@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/font_9.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/font_11.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/font_12.woff2') format('woff2');
}

/* ==========================================================================
   CSS Custom Properties (Design System - 100% Sans-Serif)
   ========================================================================== */
:root {
  --navy: #1a2530;
  --navy-dark: #121a22;
  --navy-light: #253443;
  --gold: #c5a059;
  --gold-light: #dfbe78;
  --gold-dark: #a9833c;
  --gold-glow: rgba(197, 160, 89, 0.15);
  
  --bg-body: #fbfbfc;
  --bg-surface: #ffffff;
  --bg-card: #ffffff;
  --bg-muted: #f4f6f8;
  --bg-dark: #1a2530;
  
  --text-main: #2d3748;
  --text-muted: #596779;
  --text-light: #f8fafc;
  --text-gold: #c5a059;
  
  --border-color: #e2e8f0;
  --border-gold: rgba(197, 160, 89, 0.35);
  
  /* Reine, moderne Sans-Serif Typografie */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(26, 37, 48, 0.05);
  --shadow-md: 0 8px 24px rgba(26, 37, 48, 0.08);
  --shadow-lg: 0 16px 40px rgba(26, 37, 48, 0.12);
  --shadow-gold: 0 8px 25px rgba(197, 160, 89, 0.25);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  
  --container-max: 1200px;
  --header-height: 84px;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   Typography (Clean Sans-Serif Hierarchy)
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  color: var(--navy);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 3.2rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
}

h4 {
  font-size: 1.05rem;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.text-gold {
  color: var(--gold);
}

/* ==========================================================================
   Layout Containers & Utilities
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.section-subtitle {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.9rem;
  background-color: var(--gold-glow);
  border-radius: var(--radius-full);
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.gold-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1rem auto 0;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background-color: var(--gold);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
  background-color: var(--gold-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}

.btn-outline-gold {
  background-color: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-gold:hover {
  background-color: var(--gold);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-navy {
  background-color: var(--navy);
  color: #ffffff;
}

.btn-navy:hover {
  background-color: var(--navy-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-light {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.btn-outline-light:hover {
  background-color: #ffffff;
  color: var(--navy);
  border-color: #ffffff;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  height: 72px;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-main);
  position: relative;
  padding: 0.35rem 0;
  letter-spacing: 0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background-color: var(--bg-muted);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.phone-quick-btn:hover {
  background-color: var(--gold-glow);
  border-color: var(--gold);
  color: var(--navy-dark);
}

.phone-quick-btn svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.whatsapp-quick-btn {
  display: none;
}

.whatsapp-channel-mobile {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.menu-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: var(--navy);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 5rem;
  background-color: #121a22;
  background: linear-gradient(135deg, #121a22 0%, #1a2530 60%, #202e3c 100%);
  color: #ffffff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 30%, rgba(197, 160, 89, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  background-color: rgba(197, 160, 89, 0.18);
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.hero-title {
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.12;
  font-weight: 800;
}

.hero-title span {
  color: var(--gold-light);
  display: block;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-num {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.1;
  white-space: nowrap;
}

.trust-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.35rem;
  font-weight: 500;
}

.hero-image-wrapper {
  position: relative;
}

.hero-slider-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: var(--navy-light);
  height: 500px;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, transform 6s ease-out;
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slider-controls {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 10;
}

.slider-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(18, 26, 34, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.slider-dots .dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   Regionen / Vertrauensbanner
   ========================================================================== */
.regions-strip {
  background-color: var(--navy-dark);
  color: #ffffff;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.regions-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.region-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.region-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--gold);
}

/* ==========================================================================
   Über Mich Section
   ========================================================================== */
.about-section {
  background-color: var(--bg-surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: flex-start;
}

.about-image-column {
  position: sticky;
  top: calc(var(--header-height) + 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-portrait-frame {
  position: relative;
  width: 360px;
  height: 360px;
  max-width: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.18) 0%, rgba(244, 246, 248, 1) 75%);
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 2px var(--gold), 0 20px 45px -10px rgba(26, 37, 48, 0.22);
  margin: 0 auto;
}

.about-portrait-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.05);
  transition: transform var(--transition-smooth);
}

.about-portrait-frame:hover img {
  transform: scale(1.08);
}

.about-trust-badge {
  margin-top: -1.5rem;
  z-index: 2;
  background: #ffffff;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(197, 160, 89, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-trust-badge .badge-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.about-trust-badge .badge-sub {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.qualification-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 2rem 0;
}

.qualification-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
}

.qual-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--gold-glow);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.qual-icon svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.about-quote {
  padding: 1.25rem 1.5rem;
  background-color: var(--bg-muted);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 2rem;
  font-style: italic;
  color: var(--navy);
  font-size: 0.98rem;
}

/* ==========================================================================
   Services & Leistungen Section
   ========================================================================== */
.services-section {
  background-color: var(--bg-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  border-top: 3px solid transparent;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  padding: 2.25rem 2rem;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--gold);
  border-color: var(--border-gold);
}

.service-card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.service-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--gold-glow);
  border: 1px solid rgba(197, 160, 89, 0.35);
  color: var(--gold);
}

.service-icon-badge svg {
  width: 28px;
  height: 28px;
}

.service-phase-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background-color: var(--gold-glow);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(197, 160, 89, 0.25);
}

.service-card-title {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}

.service-card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-feature-list {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.88rem;
}

.service-feature-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.service-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Tippgeber Highlight Box */
.tippgeber-box {
  margin-top: 4rem;
  background: linear-gradient(135deg, #1a2530 0%, #253443 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  color: #ffffff;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.tippgeber-title {
  color: #ffffff;
  margin-bottom: 1rem;
}

.tippgeber-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.tippgeber-reward {
  text-align: center;
  background: rgba(197, 160, 89, 0.12);
  border: 1px dashed var(--gold);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.reward-highlight {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.reward-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Angebote Section (Aktuelle Angebote & Suchauftrag)
   ========================================================================== */
.angebote-section {
  background-color: #ffffff;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ==========================================================================
   Featured Property Card
   ========================================================================== */
.featured-property-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  background-color: var(--bg-surface);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px -5px rgba(26, 37, 48, 0.08);
  margin-bottom: 0;
  transition: all var(--transition-normal);
}

.featured-property-card:hover {
  box-shadow: 0 20px 45px -5px rgba(26, 37, 48, 0.14);
  border-color: var(--border-gold);
}

.featured-property-img-wrap {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background-color: var(--navy-dark);
}

.featured-property-img-wrap picture,
.featured-property-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}

.featured-property-card:hover .featured-property-img-wrap img {
  transform: scale(1.04);
}

.featured-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.featured-status-pill {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background-color: rgba(18, 26, 34, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.featured-property-content {
  padding: clamp(2rem, 3.5vw, 2.75rem);
  padding-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.property-location-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 0.85rem;
}

.featured-property-title {
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.property-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  background-color: var(--bg-muted);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  margin-bottom: 1.35rem;
}

.spec-pill {
  display: flex;
  flex-direction: column;
}

.spec-val {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
}

.spec-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.15rem;
}

.featured-property-desc {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.featured-property-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  font-weight: 700;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.btn-outline-navy:hover {
  background-color: var(--navy);
  color: #ffffff;
}

@media (max-width: 992px) {
  .featured-property-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .featured-property-img-wrap {
    height: 280px;
    min-height: 280px;
  }
  .featured-property-content {
    padding: 1.75rem;
  }
  .property-specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}



/* ==========================================================================
   Referenzen Section (Portfolio)
   ========================================================================== */
.portfolio-section {
  background-color: var(--bg-surface);
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
}

.portfolio-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.portfolio-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.portfolio-img-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.portfolio-card:hover .portfolio-img-wrap img {
  transform: scale(1.06);
}

.portfolio-status-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: rgba(26, 37, 48, 0.9);
  color: #ffffff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.portfolio-status-badge.sold {
  background-color: var(--gold);
  color: #ffffff;
}

.portfolio-card-content {
  padding: 1rem 1.25rem;
  background: #ffffff;
}

.portfolio-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.portfolio-meta .meta-gold {
  color: var(--gold);
  font-weight: 700;
}

.referenzen-owner-cta {
  margin-top: 3.5rem;
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.referenzen-owner-cta h3 {
  font-size: 1.35rem;
  color: var(--navy);
}

.referenzen-owner-cta p {
  color: var(--text-muted);
  max-width: 620px;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

/* Suchauftrag Card */
.suchauftrag-card {
  background: linear-gradient(135deg, var(--bg-muted) 0%, #eef2f6 100%);
  border: 2px dashed var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.suchauftrag-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--gold-glow);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.suchauftrag-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* ==========================================================================
   Kontakt Section
   ========================================================================== */
.contact-section {
  background-color: var(--bg-muted);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-card {
  background-color: var(--navy);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3.5vw, 3rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
}

.contact-info-card h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-info-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.contact-channel-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-channel-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.channel-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: rgba(197, 160, 89, 0.2);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.channel-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.channel-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 2px;
  font-weight: 700;
}

.channel-val {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
}

.channel-val a:hover {
  color: var(--gold-light);
}

.contact-badge-dsgvo {
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-badge-dsgvo svg {
  width: 24px;
  height: 24px;
  fill: var(--gold-light);
  flex-shrink: 0;
}

/* Contact Form */
.contact-form-wrapper {
  background-color: var(--bg-surface);
  padding: clamp(2rem, 3.5vw, 3rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-label .required {
  color: #e53e3e;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  color: var(--text-main);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
}

/* Honeypot Spam Protection (Invisible to Humans, traps bots) */
.form-hp-field {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
  pointer-events: none;
}

.form-privacy-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 1rem 0 1.5rem;
  line-height: 1.5;
}

.form-privacy-note a {
  color: var(--gold-dark);
  text-decoration: underline;
}

.form-status {
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  display: none;
  font-size: 0.92rem;
}

.form-status.success {
  display: block;
  background-color: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-status.error {
  display: block;
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--navy-dark);
  color: #ffffff;
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(197, 160, 89, 0.25);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand .brand-name {
  color: #ffffff;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  margin-top: 1rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.92rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal-links a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Back to top & Floating CTA
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--navy);
  color: #ffffff;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 900;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--gold);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-image-card img {
    height: 400px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-portrait-frame {
    max-width: 480px;
    margin: 0 auto;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  /* Saubere Typografie & automatischer Wortumbruch */
  h1 {
    font-size: 1.75rem !important;
    line-height: 1.2 !important;
  }

  h2 {
    font-size: 1.4rem !important;
    line-height: 1.25 !important;
  }

  h3 {
    font-size: 1.15rem !important;
  }

  h4 {
    font-size: 1.0rem !important;
  }

  body, p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  h1, h2, h3, h4, p, a, span {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-desc {
    font-size: 0.92rem;
  }

  .hero-section {
    min-height: auto;
    padding-top: calc(var(--header-height) + 1.25rem);
    padding-bottom: 2.5rem;
  }

  .hero-grid {
    gap: 1.75rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
    margin-bottom: 1rem;
  }

  .hero-lead {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-slider-card {
    height: 230px;
    border-radius: var(--radius-md);
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .hero-trust-bar {
    gap: 0.75rem;
    justify-content: space-between;
    padding-top: 1.25rem;
  }

  .trust-num {
    font-size: 1.35rem;
  }

  .trust-label {
    font-size: 0.7rem;
  }

  .regions-container {
    font-size: 0.78rem;
    gap: 0.6rem 1.2rem;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(-100%);
    transition: transform var(--transition-smooth);
    z-index: 999;
    overflow-y: auto;
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .nav-link {
    font-size: 1.15rem;
    font-weight: 700;
    width: 100%;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .phone-quick-btn span {
    display: none;
  }

  .whatsapp-quick-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background-color: #25D366;
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition-fast);
  }

  .whatsapp-quick-btn:hover {
    transform: scale(1.08);
  }

  .whatsapp-quick-btn svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
  }

  .whatsapp-channel-mobile {
    display: flex !important;
  }

  .channel-icon.whatsapp-icon {
    background-color: rgba(37, 211, 102, 0.15);
    color: #25D366;
  }

  .channel-icon.whatsapp-icon svg {
    fill: #25D366;
  }

  .about-grid {
    gap: 2rem;
  }

  .qualification-list {
    gap: 0.65rem;
    margin: 1.25rem 0;
  }

  .qualification-item {
    font-size: 0.88rem;
  }

  .about-quote {
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
    margin-top: 1.25rem;
  }
  
  .tippgeber-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.75rem 1.25rem;
    margin-top: 2.5rem;
  }

  .tippgeber-reward .reward-highlight {
    font-size: 2.1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card-body {
    padding: 1.25rem;
  }

  .angebote-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .referenzen-owner-cta {
    padding: 1.75rem 1.25rem;
    margin-top: 2.5rem;
  }

  .referenzen-owner-cta .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem;
  }

  .contact-grid {
    gap: 2rem;
  }

  .contact-info-card,
  .contact-form-wrapper {
    padding: 1.75rem 1.25rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-title {
    font-size: 1.3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-slider-card {
    height: 200px;
  }

  .slider-arrow {
    width: 26px;
    height: 26px;
    font-size: 0.7rem;
  }

  .about-portrait-frame {
    max-width: 100%;
  }

  .contact-info-card,
  .contact-form-wrapper {
    padding: 1.5rem 1rem;
  }
}
