/* ===== Southminister Font ===== */
@font-face {
  font-family: 'Southminister';
  src: url('Southminister.ttf') format('truetype'),
       url('Southminister.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --gold:         #c09652;
  --gold-dark:    #a07840;
  --gold-light:   rgba(192, 150, 82, 0.1);
  --dark:         #0e0e0e;
  --dark2:        #161616;
  --dark3:        #1e1e1e;
  --dark4:        #272727;
  --text:         #ccc8c0;
  --text-light:   #a0a098;
  --bg:           #161616;
  --bg2:          #1a1a1a;
  --bg3:          #222222;
  --white:        #ffffff;
  --card-bg:      #1e1e1e;
  --border:       rgba(255,255,255,0.08);
  --border-gold:  rgba(192,150,82,0.3);
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.4);
  --shadow:       0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:    0 8px 48px rgba(0,0,0,0.6);
  --radius:       4px;
  --radius-lg:    6px;
  --font-script:  'Cormorant Garamond', serif;
  --font-heading: 'Raleway', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --transition:   0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.02em;
}
/* Handschrift nur für große Überschriften */
h1, h2 {
  font-family: var(--font-script);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: 1.05rem; font-family: var(--font-heading); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Globale Textfarben für dark mode */
strong, b, address, blockquote, label, span, p, li, td, th { color: inherit; }
select, option { color: var(--text); background: var(--dark3); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.section { padding: 88px 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 30px; font-family: var(--font-heading);
  font-weight: 600; font-size: 0.82rem; cursor: pointer;
  border: 2px solid transparent; letter-spacing: 0.08em;
  text-transform: uppercase; transition: all var(--transition);
  white-space: nowrap; border-radius: var(--radius);
}
.btn-primary {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark); border-color: var(--gold-dark);
  transform: translateY(-1px); box-shadow: 0 4px 16px rgba(192,150,82,0.3);
}
.btn-outline {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1); border-color: var(--white);
}
.btn-outline-dark {
  background: transparent; color: var(--gold); border-color: var(--gold);
}
.btn-outline-dark:hover {
  background: var(--gold); color: var(--white);
}
.btn-nav {
  background: var(--gold); color: var(--white); padding: 9px 22px;
  border-color: var(--gold); font-size: 0.78rem;
}
.btn-nav:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-sm { padding: 8px 18px; font-size: 0.75rem; border-radius: var(--radius); background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-sm:hover { background: var(--gold-dark); }
.btn-full { width: 100%; }

/* ===== Header / Nav ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(10,10,10,0.97); box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 20px rgba(0,0,0,0.6);
}
.header.scrolled .nav-links a { color: var(--text); }
.header.scrolled .nav-links a:hover { color: var(--gold); }
.header.scrolled .logo { color: var(--white); }
.header.scrolled .hamburger span { background: var(--text); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: flex; align-items: center;
  transition: opacity var(--transition);
}
.logo:hover { opacity: 0.85; }
.logo-icon { font-size: 1.4rem; color: var(--gold); }
.logo-light { color: var(--white); }

.logo-img {
  height: 72px;
  width: auto;
  display: block;
}

/* Im gescrollten (weißen) Header: Logo leicht abdunkeln damit es auf Weiß sichtbar bleibt */
.header.scrolled .logo-img {
  filter: none;
}

.logo-img--footer {
  height: 52px;
  opacity: 0.9;
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: rgba(255,255,255,0.88); font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

/* ===== Dropdown ===== */
.has-dropdown { position: relative; }
/* Padding-bottom erzeugt eine unsichtbare Brücke – verhindert das Schließen beim Überfahren */
.has-dropdown > a { padding-bottom: 24px; margin-bottom: -24px; }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--dark3); border-top: 2px solid var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12); min-width: 200px;
  opacity: 0; visibility: hidden; transition: opacity var(--transition), visibility var(--transition);
  pointer-events: none; z-index: 200;
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown { opacity: 1; visibility: visible; pointer-events: all; }
.dropdown li { border-bottom: 1px solid var(--border); }
.dropdown li:last-child { border-bottom: none; }
.dropdown a {
  display: block; padding: 12px 18px; font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--text) !important;
  transition: all var(--transition);
}
.dropdown a:hover { color: var(--gold) !important; background: rgba(255,255,255,0.05); padding-left: 22px; }
.header.scrolled .dropdown a { color: var(--text) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all var(--transition); }

.mobile-menu { display: none; background: var(--dark2); border-top: 2px solid var(--gold); }
.mobile-menu.open { display: block; }
.mobile-menu > ul { display: flex; flex-direction: column; }
.mobile-menu > ul > li { border-bottom: 1px solid var(--border); }
.mobile-menu a {
  display: block; padding: 15px 24px; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text);
  transition: color var(--transition), background var(--transition);
}
.mobile-menu a:hover { color: var(--gold); background: rgba(255,255,255,0.04); }

/* Accordion-Toggle */
.mobile-dropdown-toggle {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 24px; font-family: var(--font-heading); font-size: 0.78rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text); transition: color var(--transition), background var(--transition);
}
.mobile-dropdown-toggle:hover { color: var(--gold); background: rgba(255,255,255,0.04); }
.mobile-dropdown-toggle.open { color: var(--gold); }
.mobile-arrow {
  font-size: 1rem; transition: transform 0.2s ease; display: inline-block;
}
.mobile-dropdown-toggle.open .mobile-arrow { transform: rotate(90deg); }

/* Untermenü */
.mobile-dropdown {
  display: none; background: rgba(0,0,0,0.25); border-top: 1px solid var(--border);
}
.mobile-dropdown.open { display: block; }
.mobile-dropdown li { border-bottom: 1px solid rgba(255,255,255,0.04); }
.mobile-dropdown li:last-child { border-bottom: none; }
.mobile-dropdown a {
  padding: 12px 24px 12px 38px; font-size: 0.74rem;
  color: var(--text-light); letter-spacing: 0.08em;
}
.mobile-dropdown a:hover { color: var(--gold); }

/* CTA-Button im Mobilmenü */
.mobile-menu .mobile-cta-btn {
  margin: 16px 24px; padding: 12px 20px;
  background: var(--gold); color: var(--white) !important;
  text-align: center; display: block; font-size: 0.78rem;
  border-radius: var(--radius);
}
.mobile-menu .mobile-cta-btn:hover { background: var(--gold-dark); }

/* ===== Hero ===== */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('monolit-beach-house-4.jpg');
  background-size: cover; background-position: center 40%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(14,14,14,0.88) 0%, rgba(14,14,14,0.62) 55%, rgba(14,14,14,0.2) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: 8vh; max-width: 680px; text-align: left; padding-left: 140px; }
.hero-tag {
  display: block; color: var(--gold); font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  margin-bottom: 22px; font-family: var(--font-heading); text-align: left;
}
.hero-tag::before, .hero-tag::after { content: '—'; margin: 0 8px; opacity: 0.6; }

@media (max-width: 768px) {
  .hero-tag { font-size: 0.6rem; letter-spacing: 0.12em; white-space: nowrap; }
  .hero-tag::before, .hero-tag::after { margin: 0 5px; }
}
.hero-content h1 { color: var(--white); margin-bottom: 6px; }
.hero-content h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-sub {
  color: rgba(255,255,255,0.95); font-size: 1rem; max-width: 500px;
  margin: 18px 0 36px; line-height: 1.8;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
  font-family: var(--font-heading); font-weight: 500; letter-spacing: 0.01em;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }

.hero-stats-wrap {
  position: relative; z-index: 2; padding-bottom: 40px; margin-top: 65vh;
}
.hero-stats {
  display: inline-flex; align-items: stretch;
  border: 1px solid rgba(192,150,82,0.35); background: rgba(28,28,28,0.5);
  backdrop-filter: blur(8px);
}
.stat { text-align: center; padding: 18px 28px; }
.stat strong {
  display: block; font-size: 1.6rem; font-family: var(--font-heading);
  color: var(--gold); font-weight: 700; line-height: 1;
}
.stat span { font-size: 0.7rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; display: block; }
.stat-google { text-decoration: none; display: block; }
.stat-google:hover .stat-stars { opacity: 0.8; }
.stat-stars { font-size: 1rem; letter-spacing: 2px; color: var(--gold); display: block; line-height: 1.4; }
.stat-divider { width: 1px; background: rgba(192,150,82,0.3); flex-shrink: 0; }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; z-index: 2; font-family: var(--font-heading);
}
.scroll-arrow {
  width: 16px; height: 16px; border-right: 1px solid rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transform: rotate(45deg); animation: bounce 2.2s infinite;
}
@keyframes bounce { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(5px); } }

/* ===== Search Bar ===== */
.search-bar-section { margin-top: -52px; position: relative; z-index: 10; padding-bottom: 64px; background: var(--bg); }
.search-card { background: var(--dark3); box-shadow: var(--shadow-lg); border-top: 3px solid var(--gold); overflow: hidden; }
.search-tabs { display: flex; border-bottom: 1px solid var(--border); }
.search-tab {
  flex: 1; padding: 15px; background: none; border: none; cursor: pointer;
  font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700;
  color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em;
  transition: all var(--transition); border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.search-tab.active { color: var(--gold); border-bottom-color: var(--gold); background: rgba(192,150,82,0.05); }
.search-tab:hover:not(.active) { color: var(--text); background: rgba(255,255,255,0.04); }
.search-form { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 0; }
.search-field {
  padding: 18px 22px; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px; background: var(--dark3);
  position: relative; cursor: pointer;
}
.search-field:last-of-type { border-right: none; }
.search-field label {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold); font-family: var(--font-heading);
}
.search-field input, .search-field select {
  border: none; outline: none; font-family: var(--font-body); font-size: 0.9rem;
  color: var(--white); background: transparent; -webkit-appearance: none; cursor: pointer;
}
.search-field select {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.search-field .select-value {
  font-size: 0.9rem; color: var(--white); pointer-events: none;
}
.search-field input::placeholder { color: var(--text-light); }
.search-field select option { background: var(--dark2); color: var(--text); }
.search-btn { border-radius: 0; padding: 18px 36px; font-size: 0.78rem; align-self: stretch; }

/* ===== Gold Divider ===== */
.gold-divider {
  display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 16px;
}
.gold-divider span { display: block; width: 40px; height: 1px; background: var(--gold); }
.gold-divider i { color: var(--gold); font-size: 0.6rem; }

/* ===== Section Header ===== */
.section-header { text-align: center; max-width: 580px; margin: 0 auto 56px; }
.section-tag {
  display: block; color: var(--gold); font-size: 0.68rem;
  letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  margin-bottom: 14px; font-family: var(--font-heading);
}
.section-sub { color: var(--text); margin-top: 14px; font-size: 0.95rem; line-height: 1.8; }
.section-cta { text-align: center; margin-top: 44px; }

/* ===== Leistungen ===== */
/* ===== Section separators ===== */
.leistungen,
.immobilien,
.ueber-uns,
.referenzen,
.kontakt,
.usps,
.prozess { border-top: 1px solid var(--border); }

.leistungen { background: var(--bg2); }
.leistungen-gruppe { margin-bottom: 88px; }
.leistungen-gruppe:last-child { margin-bottom: 0; }
.gruppe-titel {
  font-family: var(--font-heading); font-size: 0.9rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold);
  margin-bottom: 24px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px;
}
.gruppe-titel::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; background: transparent; border: none; }
.cards-grid--2x2 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
.cards-grid--3col { grid-template-columns: repeat(3, 1fr); gap: 12px; }

/* Hellere Karten für Eigentümer */
.card--hell {
  background: #2e2e2e;
  border-color: rgba(192,150,82,0.4);
}
.card--hell:hover { background: #363636; }
.card--hell p { color: var(--text); }

@media (max-width: 768px) {
  .cards-grid--3col { grid-template-columns: 1fr; }
}
.card {
  background: #2a2a2a; padding: 36px 30px;
  transition: all var(--transition); display: flex; flex-direction: column; gap: 10px;
  position: relative; border: 1px solid var(--border-gold);
  border-radius: var(--radius);
}
.card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transition: transform var(--transition); transform-origin: left;
}
.card:hover::after { transform: scaleX(1); }
.card:hover { background: var(--dark4); }
.card-icon { font-size: 1.8rem; margin-bottom: 4px; }
.card h3 {
  font-family: var(--font-script); font-size: 2rem; letter-spacing: 0.01em;
  color: var(--gold); font-weight: 400; line-height: 1.2;
}
.card p { color: var(--text-light); font-size: 0.88rem; flex: 1; line-height: 1.75; }
.card-link {
  color: var(--gold); font-weight: 700; font-size: 0.75rem; margin-top: 10px;
  display: inline-block; text-transform: uppercase; letter-spacing: 0.1em;
  transition: letter-spacing var(--transition);
}
.card-link:hover { letter-spacing: 0.15em; }
.card--highlight { background: var(--dark); }
.card--highlight h3, .card--highlight p { color: rgba(255,255,255,0.88); }
.card--highlight p { color: rgba(255,255,255,0.6); }
.card--highlight::after { background: var(--gold); }

/* ===== USPs ===== */
.usps { background: var(--dark2); }
.usps .section-tag { color: var(--gold); }
.usps h2 { color: var(--white); }
.usps .section-sub { color: rgba(255,255,255,0.5); }
.usps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; background: transparent; border: none; }
.usp-item {
  background: #2a2a2a; padding: 36px 30px;
  transition: background var(--transition);
  border-left: 3px solid transparent;
  border-radius: var(--radius);
  border: 1px solid var(--border-gold);
}
.usp-item:hover { background: #333; border-left-color: var(--gold); }
.usp-link { text-decoration: none; display: block; cursor: pointer; }
.usp-link h4, .usp-link p { color: inherit; }
.usp-icon { font-size: 1.6rem; margin-bottom: 14px; }
.usp-icon:empty { display: none; }
.card-icon:empty { display: none; }
.usp-item h4 { color: var(--white); font-size: 0.95rem; letter-spacing: 0.04em; margin-bottom: 8px; }
.usp-item p { color: rgba(255,255,255,0.5); font-size: 0.87rem; line-height: 1.75; }

/* ===== Listings ===== */
.immobilien { background: var(--bg); }

.listings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.listing-card {
  background: var(--dark3); overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5); transition: all var(--transition);
  border: 1px solid var(--border); cursor: pointer;
}
.listing-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.listing-img {
  height: 210px; background-size: cover; background-position: center; position: relative;
}
.listing-badge {
  position: absolute; top: 0; left: 0; background: var(--gold); color: var(--white);
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  padding: 6px 14px; font-family: var(--font-heading);
}
.listing-badge--sold { background: var(--dark2); }
.listing-badge--rent { background: #5a7fa0; }
.listing-badge--mallorca { background: #7a9a5a; }
.listing-fav {
  position: absolute; top: 12px; right: 12px;
  background: rgba(14,14,14,0.75); border: 1px solid rgba(192,150,82,0.5);
  width: 36px; height: 36px; cursor: pointer; border-radius: 50%;
  font-size: 1.1rem; color: var(--gold); transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.listing-fav:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.listing-body { padding: 22px 24px; }
.listing-type {
  font-size: 0.65rem; color: var(--gold); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 6px;
  font-family: var(--font-heading);
}
.listing-body h3 { font-size: 0.98rem; margin-bottom: 6px; color: var(--white); font-family: var(--font-heading); }
.listing-location { font-size: 0.83rem; color: var(--text-light); margin-bottom: 14px; }
.listing-details {
  display: flex; gap: 14px; flex-wrap: wrap; font-size: 0.8rem;
  color: var(--text-light); margin-bottom: 16px;
  border-top: 1px solid var(--border); padding-top: 14px;
}
.listing-footer { display: flex; align-items: center; justify-content: space-between; }
.listing-price { font-family: var(--font-heading); font-size: 1.05rem; color: var(--white); font-weight: 700; letter-spacing: 0.02em; }

/* ===== Über uns ===== */
.ueber-uns { background: var(--bg2); }
.ueber-uns-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.img-frame { height: 620px; background-size: cover; background-position: center 25%; }
.ueber-uns-img { position: relative; }
.img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--white); padding: 20px 24px; text-align: center;
}
.img-badge strong { display: block; font-family: var(--font-heading); font-size: 2rem; line-height: 1; font-weight: 700; }
.img-badge span { font-size: 0.72rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; display: block; }
.ueber-uns-text { display: flex; flex-direction: column; gap: 18px; }
.ueber-uns-text p { color: var(--text-light); font-size: 0.93rem; line-height: 1.85; }
.ueber-uns-quote {
  border-left: 3px solid var(--gold); padding-left: 20px; margin: 6px 0;
  font-family: var(--font-script); font-style: normal; font-size: 1.7rem;
  color: var(--gold); line-height: 1.65; font-weight: 400;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.ueber-uns-list { display: flex; flex-direction: column; gap: 9px; }
.ueber-uns-list li {
  color: var(--text); font-size: 0.9rem; display: flex; align-items: flex-start; gap: 10px;
}
.ueber-uns-list li::before { content: '—'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ===== Prozess ===== */
.prozess { background: var(--dark); }
.prozess .section-tag { color: var(--gold); }
.prozess h2 { color: var(--white); }
.prozess-steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start; margin-top: 56px; gap: 0;
}
.prozess-step { text-align: center; padding: 0 12px; }
.step-number {
  font-family: var(--font-heading); font-size: 2.4rem; color: var(--gold);
  opacity: 0.25; line-height: 1; margin-bottom: 18px; font-weight: 800;
}
.prozess-step h3 { color: var(--white); margin-bottom: 10px; font-size: 0.92rem; letter-spacing: 0.06em; }
.prozess-step p { color: rgba(255,255,255,0.48); font-size: 0.86rem; line-height: 1.7; }
.prozess-arrow { color: var(--gold); opacity: 0.3; padding-top: 8px; font-size: 1.4rem; }

/* ===== Testimonials ===== */
.referenzen { background: var(--bg); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.testimonials-grid--2x2 { grid-template-columns: repeat(2, 1fr); }
.testimonial {
  background: var(--dark3); padding: 36px 30px;
  display: flex; flex-direction: column; gap: 16px;
  transition: all var(--transition);
  border: 1px solid var(--border-gold);
  border-top: 3px solid var(--gold);
}
.testimonial:hover { background: var(--dark4); border-color: var(--gold); }
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.testimonial > p { color: var(--text); font-style: italic; line-height: 1.75; flex: 1; font-size: 0.9rem; }
.testimonial-author strong { color: var(--white); }
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid var(--border); }
.author-avatar {
  width: 40px; height: 40px; display: flex; align-items: center;
  justify-content: center; color: var(--white); font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; font-family: var(--font-heading); }
.testimonial-author span { font-size: 0.78rem; color: var(--text-light); }

/* ===== Kontakt ===== */
.kontakt { background: var(--bg2); }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.kontakt-info { display: flex; flex-direction: column; gap: 18px; }
.kontakt-info > p { color: var(--text-light); font-size: 0.93rem; line-height: 1.8; }
.kontakt-details { display: flex; flex-direction: column; gap: 0; margin-top: 4px; border: 1px solid var(--border); }
.kontakt-item {
  display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px;
  border-bottom: 1px solid var(--border); transition: background var(--transition);
}
.kontakt-item:last-child { border-bottom: none; }
.kontakt-item:hover { background: rgba(255,255,255,0.04); }
.kontakt-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.kontakt-item div { display: flex; flex-direction: column; gap: 1px; }
.kontakt-item strong {
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold); font-family: var(--font-heading); font-weight: 700;
}
.kontakt-item a { color: var(--text); font-size: 0.9rem; }
.kontakt-item a:hover { color: var(--gold); }
.kontakt-item span { font-size: 0.9rem; }

.kontakt-social { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.social-badge {
  display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--border);
  padding: 10px 16px; font-size: 0.82rem; font-weight: 600; color: var(--text);
  transition: all var(--transition); font-family: var(--font-heading);
  letter-spacing: 0.02em;
}
.social-badge svg { color: var(--gold); flex-shrink: 0; }
.social-badge:hover { border-color: var(--gold); color: var(--gold); }

.kontakt-form-wrap {
  background: var(--dark3); border-top: 3px solid var(--gold);
  padding: 40px; box-shadow: var(--shadow); border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
}
.kontakt-form h3 {
  font-size: 1.1rem; margin-bottom: 28px; letter-spacing: 0.06em;
  text-transform: uppercase; font-size: 0.88rem; color: var(--gold);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label {
  font-size: 0.65rem; font-weight: 700; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.12em; font-family: var(--font-heading);
}
.form-group input, .form-group select, .form-group textarea {
  border: 1px solid var(--border); padding: 11px 14px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--text);
  background: var(--dark4); transition: border-color var(--transition); outline: none; width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-group select option { background: var(--dark3); color: var(--text); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.checkbox-label {
  display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem;
  color: var(--text-light); margin-bottom: 18px; cursor: pointer; line-height: 1.5;
}
.checkbox-label input { margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; }
.checkbox-label a { color: var(--gold); }
.form-note { text-align: center; font-size: 0.78rem; color: var(--text-light); margin-top: 12px; }

/* ===== Footer ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.6); padding-top: 64px; border-top: 3px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand p { font-size: 0.86rem; line-height: 1.75; max-width: 250px; color: rgba(255,255,255,0.45); }
.social-links { display: flex; gap: 8px; margin-top: 6px; }
.social-links a {
  width: 38px; height: 38px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); color: var(--gold);
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.social-links a svg { width: 18px; height: 18px; }
.footer-col h4 {
  color: var(--white); font-size: 0.65rem; font-family: var(--font-heading); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 0.84rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
}
.footer-bottom strong { color: var(--gold); font-weight: 600; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .ueber-uns-grid, .kontakt-grid { grid-template-columns: 1fr; gap: 48px; }
  .img-frame { height: auto; aspect-ratio: 4 / 5; max-height: 560px; }
  .img-badge { right: 12px; bottom: -12px; }
  .prozess-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .prozess-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .search-form { grid-template-columns: 1fr 1fr; }
  .search-btn { grid-column: span 2; }
}

@media (max-width: 768px) {
  /* ---- Abstände ---- */
  .section { padding: 52px 0; }
  .container { padding: 0 16px; }

  /* ---- Navigation ---- */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav { padding: 18px 0; }
  .logo-img { height: 54px; }

  /* ---- Hero ---- */
  .hero-content { padding-top: 100px; text-align: center; padding-left: 0; }
  .hero-tag { text-align: center; }
  .hero-sub { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-cta { align-items: center; }
  .hero {
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding-bottom: 32px;
  }
  .hero-stats-wrap {
    position: static; margin-top: 24px; padding: 0 16px 0;
    width: 100%;
  }
  .hero-stats {
    flex-direction: column; align-items: stretch;
    width: 100%; max-width: 100%;
  }
  .hero-sub { font-size: 0.95rem; margin-bottom: 26px; text-shadow: 0 1px 10px rgba(0,0,0,0.7); }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .hero-stats {
    flex-direction: column; align-items: stretch;
    width: 100%; max-width: 100%;
  }
  .stat { padding: 14px 20px; }
  .stat strong { font-size: 1.35rem; }
  .stat-divider { width: 100%; height: 1px; }
  .hero-scroll { display: none; }

  /* ---- Suchleiste ---- */
  .search-bar-section { margin-top: -32px; padding-bottom: 40px; }
  .search-form { grid-template-columns: 1fr; }
  .search-btn { grid-column: span 1; padding: 16px; }
  .search-field { padding: 14px 16px; }

  /* ---- Section Header ---- */
  .section-header { margin-bottom: 36px; }
  .section-cta {
    display: flex; flex-direction: column;
    align-items: stretch; gap: 12px; margin-top: 32px;
  }
  .section-cta .btn { width: 100%; }

  /* ---- Cards & Grids ---- */
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid--2x2 { grid-template-columns: 1fr; }
  .card { padding: 26px 20px; }

  /* ---- Listings ---- */
  .listings-grid { grid-template-columns: 1fr; gap: 16px; }
  .listing-img { height: 190px; }

  /* ---- USPs ---- */
  .usps-grid { grid-template-columns: 1fr; }
  .usp-item { padding: 24px 20px; }

  /* ---- Prozess ---- */
  .prozess-steps { grid-template-columns: 1fr; }

  /* ---- Testimonials ---- */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial { padding: 24px 20px; }

  /* ---- Über uns ---- */
  .ueber-uns-grid { grid-template-columns: 1fr; gap: 32px; }
  .img-frame { height: auto; aspect-ratio: 4 / 5; }
  .img-badge { right: 12px; bottom: -12px; padding: 14px 18px; }
  .img-badge strong { font-size: 1.6rem; }

  /* ---- Kontakt ---- */
  .kontakt-grid { grid-template-columns: 1fr; gap: 36px; }
  .kontakt-form-wrap { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }

  /* ---- Atmosphäre (kein fixed-bg auf iOS) ---- */
  .atmosphaere-bg { background-attachment: scroll; }
  .atmosphaere-section { height: 50vh; }

  /* ---- Instagram / Phone ---- */
  .instagram-grid { grid-template-columns: 1fr; gap: 32px; }
  .phone-frame { width: 220px; }

  /* ---- Auszeichnungen ---- */
  .auszeichnungen { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .auszeichnung-img { height: 60px; }

  /* ---- Footer ---- */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .footer { padding-top: 44px; }

  /* ---- WhatsApp FAB ---- */
  .whatsapp-fab { bottom: 18px; right: 18px; width: 50px; height: 50px; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
}

/* ===== Referenzen Video-Section ===== */
.referenzen-section { background: var(--bg2); border-top: 1px solid var(--border); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 8px;
}
.video-card {
  background: var(--dark3);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-wrap {
  position: relative;
  padding-top: 65%;
  background: #000;
}
.video-wrap video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-info { padding: 20px 22px; }
.video-info h3 {
  font-family: var(--font-script); font-size: 1.5rem;
  color: var(--gold); font-weight: 400; margin-bottom: 6px;
}
.video-info p { color: var(--text-light); font-size: 0.88rem; line-height: 1.65; }
.video-tag {
  display: inline-block; margin-top: 10px;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--gold); font-family: var(--font-heading);
}

@media (max-width: 768px) {
  .video-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ===== Instagram Sektion ===== */
.instagram-section { background: var(--bg2); border-top: 1px solid var(--border); }
.instagram-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.instagram-text { display: flex; flex-direction: column; gap: 16px; }
.instagram-text p { color: var(--text); line-height: 1.8; font-size: 0.95rem; }
.instagram-embed-wrap { display: flex; justify-content: center; }

/* ===== iPhone 17 Mockup ===== */
.phone-mockup { display: flex; justify-content: center; padding: 20px 0; }

.phone-frame {
  position: relative;
  width: 305px;
  /* Titanium-Rahmen sehr dünn */
  background: linear-gradient(160deg, #2a2a2a 0%, #111 40%, #1e1e1e 100%);
  border-radius: 50px;
  padding: 6px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    inset 0 -1px 0 rgba(0,0,0,0.15),
    0 0 0 1px rgba(0,0,0,0.1),
    0 40px 100px rgba(0,0,0,0.7),
    0 10px 30px rgba(0,0,0,0.35);
  display: flex; flex-direction: column; align-items: stretch;
}

/* Action Button links */
.phone-frame::before {
  content: '';
  position: absolute; left: -2.5px; top: 95px;
  width: 2.5px; height: 16px;
  background: #333;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 28px 0 #333, 0 52px 0 #333;
}
/* Power-Button rechts */
.phone-frame::after {
  content: '';
  position: absolute; right: -2.5px; top: 120px;
  width: 2.5px; height: 44px;
  background: #333;
  border-radius: 0 2px 2px 0;
}

/* Schwarze Innenfläche (Screen-Bereich) */
.phone-screen-wrap {
  background: #000;
  border-radius: 45px;
  overflow: hidden;
  position: relative;
  display: block;
}

/* Dynamic Island – kleine Pille direkt im Screen */
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px; height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
}
.phone-notch::after { display: none; }

/* Screen füllt fast die gesamte Vorderseite */
.phone-screen {
  width: 100%;
  aspect-ratio: 9/19.8;
  background: #000;
  position: relative;
  overflow: hidden;
}
.phone-screen::after { display: none; }
.phone-screen iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}

/* Home Indicator – schwarzer Abschluss unten */
.phone-home {
  display: block;
  width: 100%;
  height: 28px;
  background: #000;
  flex-shrink: 0;
  position: relative;
}
.phone-home::after {
  content: '';
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 3px;
}

.phone-speaker { display: none; }
/* Profilbereich oben überdecken */
.phone-screen-cover-top { display: none; }
.phone-screen-cover { display: none; }

@media (max-width: 900px) {
  .instagram-grid { grid-template-columns: 1fr; gap: 40px; }
  .phone-frame { width: 235px; }
}

/* ===== Atmosphäre Bild-Sektion ===== */
.atmosphaere-section {
  position: relative; height: 65vh; min-height: 420px;
  overflow: hidden; display: flex; align-items: center;
}
.atmosphaere-bg {
  position: absolute; inset: 0;
  background-image: url('mallorca-villa.jpg');
  background-size: cover; background-position: center 40%;
  background-attachment: fixed;
  transform: scale(1.03);
  transition: transform 0.6s ease;
}
.atmosphaere-section:hover .atmosphaere-bg { transform: scale(1.06); }
.atmosphaere-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0.3) 100%);
}
.atmosphaere-content {
  position: relative; z-index: 2; text-align: center;
}
.atmosphaere-quote {
  font-family: var(--font-script); font-size: clamp(1.8rem, 4vw, 3rem);
  color: rgba(255,255,255,0.85); line-height: 1.3; font-weight: 400;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.atmosphaere-quote--gold { color: var(--gold); }

/* ===== Auszeichnungen / Siegel ===== */
.auszeichnungen {
  display: flex; align-items: center; gap: 24px;
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--border);
}
.auszeichnung-img {
  height: 80px; width: auto; object-fit: contain;
  opacity: 0.9; transition: opacity var(--transition), transform var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.auszeichnung-img:hover { opacity: 1; transform: scale(1.05); }
.auszeichnung-img--bg {
  background: rgba(255,255,255,0.08); padding: 8px 12px;
  border-radius: var(--radius);
}

/* ===== Suchergebnisse ===== */
.suche-banner {
  background: var(--dark2); border-bottom: 1px solid var(--border);
  padding: 20px 0; margin-top: 72px;
}
.suche-filter-form {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr auto; gap: 0;
  background: var(--dark3); border: 1px solid var(--border); border-top: 2px solid var(--gold);
}
.suche-field {
  padding: 14px 18px; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 3px;
}
.suche-field label {
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--gold); font-family: var(--font-heading);
}
.suche-field select {
  border: none; outline: none; font-family: var(--font-body); font-size: 0.88rem;
  color: var(--white); background: transparent; -webkit-appearance: none; cursor: pointer;
}
.suche-field select option { background: var(--dark2); color: var(--text); }
.suche-btn { border-radius: 0; padding: 14px 28px; font-size: 0.75rem; align-self: stretch; }
.suche-section { background: var(--bg); }
.suche-header { margin-bottom: 36px; }
.suche-header h2 { margin-bottom: 6px; }

@media (max-width: 768px) {
  .suche-filter-form { grid-template-columns: 1fr 1fr; }
  .suche-btn { grid-column: span 2; }
}

/* ===== Foto Galerie ===== */
.foto-galerie {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.foto-item {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  background: var(--dark3);
  border: 1px solid var(--border);
}
.foto-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.foto-item:hover img { transform: scale(1.05); }

@media (max-width: 768px) {
  .foto-galerie { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
@media (max-width: 480px) {
  .foto-galerie { grid-template-columns: 1fr; }
}

/* ===== WhatsApp FAB ===== */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.whatsapp-fab svg { width: 28px; height: 28px; }

@media (max-width: 400px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .section { padding: 40px 0; }
  .container { padding: 0 14px; }
  .btn { padding: 12px 20px; font-size: 0.78rem; }
  .hero-content { padding-top: 64px; }
  .listing-img { height: 170px; }
  .stat { padding: 12px 16px; }
  .stat strong { font-size: 1.2rem; }
  .phone-frame { width: 190px; }
  .kontakt-form-wrap { padding: 18px 14px; }
}

/* ===== Animations ===== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
