/* ============================================
   THE FINEST PROPERTIES DUBAI
   Main Stylesheet
   ============================================ */

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-latin-400-normal.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-latin-500-normal.woff2') format('woff2');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-latin-600-normal.woff2') format('woff2');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-latin-300-normal.woff2') format('woff2');
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-latin-300-italic.woff2') format('woff2');
  font-style: italic;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-latin-400-normal.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

/* ---------- Variables ---------- */
:root {
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --gold: #c8a55c;
  --gold-light: #d4b76a;
  --white: #fff;
  --off-white: #f5f2ed;
  --gray: #8a8a8a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

img {
  max-width: 100%;
  display: block;
}

picture {
  display: block;
}

.hero-bekannt-logos picture,
.bekannt-logos picture {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.partner-logo-card picture {
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  display: block;
}

section[id] {
  scroll-margin-top: 110px;
}

.skip-link {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 12px 18px;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2000;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  padding: 8px 60px;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  max-width: 320px;
  flex-shrink: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.navbar.scrolled .nav-logo {
  opacity: 1;
  pointer-events: auto;
}

.nav-logo img {
  height: 72px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: height 0.4s ease;
}

.navbar.scrolled .nav-logo img {
  height: 64px;
}

@media (max-width: 640px) {
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 28px !important;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-lang-item {
  display: flex;
  align-items: center;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 4px;
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.language-switcher__link {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.language-switcher__link::after {
  display: none !important;
}

.language-switcher__link:hover,
.language-switcher__link:focus-visible,
.language-switcher__link.is-active {
  color: var(--gold);
}

.language-switcher__divider {
  color: rgba(255, 255, 255, 0.25);
  font-size: 10px;
  line-height: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  border: 0;
  padding: 0;
  background: transparent;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s ease;
}


/* ============================================
   HERO  –  Splitscreen mit vertikalem Goldstreifen (V1)
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  padding: 0;
}

/* ---- Linke Hälfte: Text & Branding ---- */
.hero-left {
  position: relative;
  z-index: 3;
  width: 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 72px 60px 80px;
  background: var(--black);
}

.hero-left::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--gold) 20%,
    var(--gold) 80%,
    transparent 100%
  );
  opacity: 0.7;
}

/* ---- Rechte Hälfte: Portrait-Foto ---- */
.hero-right {
  position: relative;
  z-index: 2;
  flex: 1;
  overflow: hidden;
}

.hero-scene {
  position: absolute;
  inset: 0;
}
.hero-scene picture,
.hero-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.85);
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    var(--black) 0%,
    transparent 18%
  );
}

.hero-person {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  height: 98%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.hero-person picture { height: 100%; }
.hero-person img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  filter:
    drop-shadow(-40px 0 80px rgba(0, 0, 0, 0.9))
    drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
  opacity: 0;
  animation: personReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.hero-glow {
  position: absolute;
  bottom: -10%;
  right: -5%;
  z-index: 2;
  width: 65%;
  height: 120%;
  background: radial-gradient(
    ellipse at 60% 90%,
    rgba(200, 165, 92, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* ---- Branding & Inhalt links ---- */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-eyebrow-text {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.hero-logo {
  width: 100%;
  max-width: 700px;
  max-height: 290px;
  object-fit: contain;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.35s forwards;
}

.hero-divider {
  width: 52px;
  height: 1px;
  background: rgba(200, 165, 92, 0.45);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.45s forwards;
}

.hero-name {
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(200, 165, 92, 0.8);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.2vw, 70px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 420px;
  margin-bottom: 32px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.72s forwards;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.84s forwards;
}

.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}
.hero-scroll-hint:hover {
  color: rgba(255, 255, 255, 0.7);
}
.hero-scroll-hint svg {
  animation: scrollBob 2s ease-in-out infinite;
}

.hero-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---- Bekannt aus – rechte Seite, vor den Füßen ---- */
.hero-bekannt {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: fit-content;
  max-width: 340px;
  padding: 18px 24px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 165, 92, 0.3);
  border-left: 3px solid var(--gold);
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}
.hero-bekannt-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  flex-shrink: 0;
  white-space: nowrap;
}
.hero-bekannt-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  width: fit-content;
  max-width: 100%;
}
.hero-bekannt img { opacity: 0.7; transition: opacity 0.3s; }
.hero-bekannt img:hover { opacity: 1; }
.hero-bekannt img.forbes { height: 22px; width: auto; }
.hero-bekannt img.rtl    { height: 22px; width: auto; border-radius: 3px; }
.hero-bekannt img.pro7   { height: 34px; width: auto; }

@keyframes personReveal {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* Desktop: nur --desktop version zeigen, --inline verstecken */
.hero-bekannt--inline { display: none; }
.hero-bekannt--desktop { display: flex; }

/* ---- Responsive: ≤1100px (Tablet) ---- */
@media (max-width: 1100px) {
  .hero {
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    width: 100%;
    background: linear-gradient(
      to bottom,
      rgba(10,10,10,0.70) 0%,
      rgba(10,10,10,0.55) 50%,
      rgba(10,10,10,0.75) 100%
    );
    padding: 110px 28px 160px;
    z-index: 5;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
  }
  .hero-left::after { display: none; }

  .hero-right {
    position: absolute;
    inset: 0;
    width: 100%;
    z-index: 1;
  }

  /* Hintergrundbild etwas heller */
  .hero-scene img {
    filter: brightness(0.55) saturate(0.9);
    object-position: center 20%;
  }

  /* Frau + Divider ausblenden, Logo einblenden */
  .hero-person { display: none; }
  .hero-divider { display: none; }

  /* Hero-Logo: groß, zentriert, oben */
  .hero-logo {
    display: block;
    width: calc(100% + 56px);
    margin-left: -28px;
    margin-right: -28px;
    max-width: none;
    max-height: none;
    height: auto;
    margin-bottom: 40px;
    object-fit: contain;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
  }

  /* Mobile: inline version zeigen, desktop version verstecken */
  .hero-bekannt--inline { display: flex; }
  .hero-bekannt--desktop { display: none; }

  .hero-main {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero-name {
    font-size: 11px;
    letter-spacing: 4px;
    margin-bottom: 4px;
  }

  /* Überschrift über die volle Breite */
  .hero-title {
    font-size: clamp(46px, 14vw, 80px);
    line-height: 1.0;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 95%;
  }

  .hero-cta-group {
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Bekannt-aus: fixe Fußleiste, kein Kasten */
  .hero-bekannt {
    position: fixed;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    transform: none;
    border-left: none;
    border-top: 1px solid rgba(200, 165, 92, 0.2);
    border-radius: 0;
    margin-top: 0;
    padding: 14px 24px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
    background: rgba(8, 8, 8, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 200;
    overflow: hidden;
    opacity: 1;
    animation: none;
  }

  .hero-bekannt-label {
    font-size: 8px;
    letter-spacing: 3px;
    white-space: nowrap;
    flex-shrink: 0;
    color: rgba(200, 165, 92, 0.7);
  }

  .hero-bekannt-logos {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 24px;
    align-items: center;
  }

  .hero-bekannt img.forbes { height: 20px; width: auto; }
  .hero-bekannt img.rtl    { height: 20px; width: auto; }
  .hero-bekannt img.pro7   { height: 32px; width: auto; }
}

/* ---- Responsive: ≤640px (Mobile) ---- */
@media (max-width: 640px) {
  .hero-left {
    padding: 90px 24px 90px;
  }

  .hero-title {
    font-size: clamp(38px, 10.5vw, 56px);
  }

  .hero-subtitle {
    font-size: 13px;
    max-width: 100%;
  }

  .hero-bekannt {
    gap: 18px;
    padding: 12px 20px;
  }

  .hero-bekannt img.forbes { height: 17px; width: auto; }
  .hero-bekannt img.rtl    { height: 17px; width: auto; }
  .hero-bekannt img.pro7   { height: 27px; width: auto; }
  .hero-bekannt-logos { gap: 14px; }
  .hero-bekannt img.forbes { height: 14px; width: auto; }
  .hero-bekannt img.rtl    { height: 14px; width: auto; }
  .hero-bekannt img.pro7   { height: 22px; width: auto; }
}


/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
  display: inline-block;
  padding: 16px 48px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: all 0.4s ease;
  background: transparent;
  cursor: pointer;
}

.btn-gold:hover {
  background: var(--gold);
  color: var(--black);
}


/* ============================================
   SECTIONS - General
   ============================================ */
section {
  padding: 120px 60px;
}

main > section:not(.hero),
main > .cta-banner {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.section-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  margin-bottom: 24px;
}

.section-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  max-width: 680px;
}


/* ============================================
   SERVICES (Dienstleistungen)
   ============================================ */
.services-section {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.services-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--gold);
}

.services-col ul {
  list-style: none;
}

.services-col li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.services-col li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}


/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--black);
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(200, 165, 92, 0.06), transparent 50%);
}

.cta-banner .section-title {
  color: #fff;
  max-width: 850px;
  margin: 0 auto 40px;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  position: relative;
}


/* ============================================
   COMPARISON (Deutschland vs Dubai)
   ============================================ */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 60px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
}

.comparison-col {
  padding: 50px 40px;
}

.comparison-col.germany {
  background: #f0eded;
}

.comparison-col.dubai {
  background: var(--dark);
  color: #fff;
}

.comparison-col h3 {
  font-size: 28px;
  margin-bottom: 30px;
}

.comparison-col.dubai h3 { color: var(--gold); }
.comparison-col.germany h3 { color: #c0392b; }

.comparison-col ul {
  list-style: none;
}

.comparison-col li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(128, 128, 128, 0.15);
  font-size: 14px;
  line-height: 1.6;
  padding-left: 28px;
  position: relative;
}

.comparison-col.germany li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #c0392b;
  font-weight: 700;
}

.comparison-col.dubai li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}


/* ============================================
   VORTEILE
   ============================================ */
.vorteile-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.vorteile-image {
  border-radius: 4px;
  overflow: hidden;
}

.vorteile-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}


/* ============================================
   BENEFITS GRID
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 60px;
}

.benefit-card {
  padding: 40px 30px;
  background: var(--black);
  transition: all 0.4s ease;
}

.benefit-card:hover {
  background: rgba(200, 165, 92, 0.06);
}

.benefit-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.benefit-card h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--gold);
}

.benefit-card p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}
/* ============================================
   ABOUT / ERLEBE DEN UNTERSCHIED
   ============================================ */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  border-radius: 4px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.logo-dark {
  margin-bottom: 30px;
}

.logo-dark img {
  height: 55px;
}


/* ============================================
   4-PHASE STRATEGY
   ============================================ */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.strategy-card {
  padding: 40px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.strategy-card:hover {
  transform: translateY(-4px);
}

.strategy-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: rgba(200, 165, 92, 0.15);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

.strategy-card h4 {
  font-size: 22px;
  margin-bottom: 16px;
  position: relative;
}

.strategy-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray);
  position: relative;
}


/* ============================================
   SERVICE CARDS (Kapitalanleger, Eigennutzer, Verkauf)
   ============================================ */
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  position: relative;
  height: 450px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.service-card picture,
.gallery-item picture,
.slide picture {
  width: 100%;
  height: 100%;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.service-card-overlay h3 {
  color: #fff;
  font-size: 26px;
}

.service-card-overlay span {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  margin-bottom: 8px;
}


/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  background: var(--dark);
  padding: 100px 60px;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
  margin-top: 50px;
}

.gallery-item {
  border-radius: 4px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-row: span 2; }
.gallery-item:nth-child(6) { grid-row: span 2; }


/* ============================================
   PORTFOLIO / PROPERTY SLIDERS
   ============================================ */
.portfolio-title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.price-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--gold);
}

.property-showcase {
  margin-bottom: 100px;
}

.property-name {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.property-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 600px;
  margin-top: 10px;
}

.property-slider {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--dark);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
}

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

.slider-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.slider-btn {
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.slider-counter {
  position: absolute;
  bottom: 28px;
  left: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  letter-spacing: 2px;
  z-index: 5;
}


/* ============================================
   DEVELOPER LOGOS
   ============================================ */
.partner-section {
  background: var(--off-white);
  padding: 80px 60px;
}

.dev-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.partner-logo-card {
  min-height: 118px;
  padding: 28px 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.34);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo {
  height: 42px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.74;
  transition: opacity 0.28s ease;
}

.partner-logo--wide {
  max-width: 82%;
}

.partner-logo--tall {
  height: 68px;
}

.partner-logo--blend {
  mix-blend-mode: normal;
}

.partner-logo-card:hover .partner-logo {
  opacity: 0.94;
}

/* ============================================
   ABOUT ANNA
   ============================================ */
.anna-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.anna-image {
  overflow: visible;
  background: transparent;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 580px;
}

.anna-image picture {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: min(100%, 434px);
}

/* Weicher Boden-Schatten: gibt Anna Tiefe ohne harten Hintergrund */
.anna-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.anna-image img {
  width: min(100%, 434px);
  height: auto;
  max-height: 720px;
  object-fit: contain;
  object-position: bottom center;
  position: relative;
  z-index: 1;
  display: block;
}

.bekannt-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  width: fit-content;
  max-width: 100%;
}

.bekannt-logos img {
  width: auto;
  max-width: none;
  opacity: 0.55;
  transition: opacity 0.3s ease;
}

.bekannt-logos img:hover {
  opacity: 0.8;
}

.bekannt-logos img.forbes { width: auto; height: 24px; }
.bekannt-logos img.rtl { width: auto; height: 24px; border-radius: 2px; }
.bekannt-logos img.pro7 { width: auto; height: 38px; }


/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  background: var(--black);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}

.contact-info p {
  font-size: 15px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.6);
}

.contact-info a {
  color: var(--gold);
  text-decoration: none;
}

.contact-note {
  margin-top: 24px;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 8px;
  padding: 14px 28px;
  background: #128C4A;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-whatsapp:hover {
  background: #0f7a3f;
  transform: translateY(-2px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field-group label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  border-color: var(--gold);
}

.contact-form textarea {
  resize: none;
  height: 100px;
}

.form-note,
.form-status {
  font-size: 12px;
  line-height: 1.8;
}

.form-note {
  color: rgba(255, 255, 255, 0.45);
}

.form-status {
  min-height: 22px;
  color: var(--gold);
}

.submit-btn {
  align-self: flex-start;
  padding: 14px 48px;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.submit-btn:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

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

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}


/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  section { padding: 80px 30px; }
  .navbar { padding: 14px 30px; }
  /* hero-person wird im hero-spezifischen breakpoint (1100px) gesteuert */
  .hero-content { padding: 0 30px; }
  .comparison-grid,
  .vorteile-content,
  .strategy-grid,
  .about-content,
  .anna-content,
  .contact-grid,
  .services-grid { grid-template-columns: 1fr; }
  .services-cards { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid .benefit-card {
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
  }
  .benefits-grid .benefit-card .benefit-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
  }
  .benefits-grid .benefit-icon {
    font-size: 24px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .benefits-grid .benefit-card h4 {
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.3;
  }
  .benefits-grid .benefit-card p {
    font-size: 12px;
    line-height: 1.55;
    margin-left: 36px;
  }

  /* WhatsApp Button auf Mobile – Outline-Stil für besseren Kontrast */
  .btn-whatsapp {
    background: transparent;
    border: 1px solid #25a244;
    color: #4cd97a;
    font-size: 12px;
    padding: 13px 22px;
  }
  .btn-whatsapp:hover {
    background: rgba(37, 162, 68, 0.15);
    transform: none;
  }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .dev-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-section { padding: 80px 30px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  /* Logo auf Mobile absolut zentrieren */
  .navbar {
    position: fixed;
  }
  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 190px;
    opacity: 0;
    pointer-events: none;
  }
  .navbar.scrolled .nav-logo {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-logo img {
    height: 50px;
    transform: none;
    transform-origin: center center;
  }
  .nav-lang-item {
    justify-content: center;
  }
  .language-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    gap: 18px;
  }
  .language-switcher__link {
    font-size: 16px;
    letter-spacing: 3px;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(10, 10, 10, 0.97);
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 999;
  }
  .nav-links.open a { font-size: 16px; }
  .hero-title { font-size: clamp(46px, 14vw, 80px); }
  .benefits-grid,
  .services-cards { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  .property-slider { height: 280px; }
  section { padding: 60px 20px; }
  .footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 60px 20px; }
  .vorteile-image img,
  .anna-image { min-height: 380px; }
  .anna-image picture {
    width: min(100%, 280px);
  }
  .anna-image img {
    width: min(100%, 280px);
    max-height: none;
  }
  .partner-section { padding: 60px 20px; }
  .partner-logo-card {
    min-height: 104px;
    padding: 28px 20px;
  }
  .partner-logo {
    height: 36px;
  }
}

@media (max-width: 540px) {
  .dev-logos { grid-template-columns: 1fr; }
  .partner-logo--wide {
    max-width: 88%;
  }
}
