/* ════════════════════════════════════════════════════════════════
   GOMBAULT IMMOBILIEN — Shared Stylesheet
   Design-Tokens + Komponenten der eigenständigen Website.
   Fonts: Playfair Display (Headings) + Inter (Body).
   Farben siehe :root (entspricht GombaultFarbpalette_V1).
════════════════════════════════════════════════════════════════ */

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

:root {
  --light:       #F2F6F9;
  --dark:        #001D32;
  --gold:        #C19765;
  --gold-hover:  #a07845;
  --font-h:      'Playfair Display', Georgia, serif;
  --font-b:      'Inter', system-ui, sans-serif;
  --ease:        0.35s ease;
  --shadow-sm:   0 2px 12px rgba(0,29,50,.08);
  --shadow-md:   0 8px 32px rgba(0,29,50,.13);
  --shadow-lg:   0 20px 60px rgba(0,29,50,.18);
  --max-w:       1280px;
  --radius:      10px;   /* Karten, Formularboxen */
  --radius-sm:   8px;    /* Buttons, Eingabefelder */
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.65;
}

/* ─ TYPO ─────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-h); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); }
a  { color: inherit; }

/* ─ UTILS ────────────────────────────────────── */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section     { padding: 100px 0; }
.section--sm { padding: 72px 0; }
.dark-bg     { background: var(--dark); color: var(--light); }
.light-bg    { background: var(--light); color: var(--dark); }
.gold-bar    { width: 56px; height: 3px; background: var(--gold); margin: 1rem 0 2rem; }
.gold-bar--c { margin: 1rem auto 2rem; }
.label       { font-size: .78rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.tc          { text-align: center; }
.lead        { max-width: 620px; margin: 0 auto; font-size: 1rem; }
.muted-d     { color: rgba(0,29,50,.65); }
.muted-l     { color: rgba(242,246,249,.7); }
.mt-2        { margin-top: 2rem; }

/* ─ BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-block; padding: 14px 36px;
  font-family: var(--font-b); font-size: .85rem;
  font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; text-decoration: none;
  cursor: pointer; border: none; transition: var(--ease);
  border-radius: var(--radius-sm);
}
.btn-gold    { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-hover); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--light); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--dark); }
.btn-dark    { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn-dark:hover { background: var(--dark); color: var(--light); }
.btn-block   { width: 100%; text-align: center; }

/* ─ NAVBAR ───────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; background: rgba(0,29,50,.97);
  backdrop-filter: blur(12px); box-shadow: 0 4px 24px rgba(0,0,0,.22);
  transition: var(--ease);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo img { height: 42px; filter: brightness(0) invert(1); transition: var(--ease); display: block; }
.nav__list { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav__list > li { position: relative; }
.nav__list a {
  color: rgba(242,246,249,.82); text-decoration: none;
  font-size: .8rem; font-weight: 500; letter-spacing: .07em;
  text-transform: uppercase; position: relative; padding-bottom: 3px;
  transition: var(--ease); display: inline-flex; align-items: center; gap: 5px;
}
.nav__list > li > a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: var(--ease);
}
.nav__list a:hover { color: var(--gold); }
.nav__list > li > a:hover::after { width: 100%; }

/* Dropdown */
.nav__drop {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: var(--dark); border: 1px solid rgba(193,151,101,.2);
  padding: .5rem 0; list-style: none; box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm); overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--ease); margin-top: 12px;
}
.nav__list > li:hover .nav__drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__drop li a { display: block; padding: .65rem 1.4rem; font-size: .78rem; letter-spacing: .05em; }
.nav__drop li a::after { display: none; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--light); transition: var(--ease); }
.nav__mobile { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark); padding: 1rem 2rem 1.5rem; max-height: 80vh; overflow-y: auto; }
.nav__mobile.open { display: block; }
.nav__mobile a { display: block; color: rgba(242,246,249,.8); text-decoration: none; padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: .88rem; letter-spacing: .06em; text-transform: uppercase; transition: var(--ease); }
.nav__mobile a.sub { padding-left: 1rem; font-size: .8rem; text-transform: none; letter-spacing: .03em; color: rgba(242,246,249,.6); }
.nav__mobile a:last-child { border: none; }
.nav__mobile a:hover { color: var(--gold); }
@media(max-width:980px){
  .nav__list { display: none; }
  .nav__burger { display: flex; }
}

/* ─ HERO (Startseite) ────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: var(--dark) center/cover no-repeat;
  background-image: linear-gradient(135deg, rgba(0,29,50,.78) 0%, rgba(0,29,50,.48) 55%, rgba(193,151,101,.12) 100%), url('../img/hero.jpg');
}
.hero__content { position: relative; z-index: 1; text-align: center; color: var(--light); padding: 0 1.5rem; max-width: 900px; }
.hero__logo { height: 72px; margin-bottom: 2.5rem; filter: brightness(0) invert(1); }
.hero__h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700; line-height: 1.08; margin-bottom: 1rem; }
.hero__h1 span { color: var(--gold); }
.hero__sub { font-size: 1rem; font-weight: 300; letter-spacing: .14em; text-transform: uppercase; opacity: .78; margin-bottom: 2.5rem; }
.hero__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─ PAGE-HERO (Unterseiten) ──────────────────── */
.page-hero {
  position: relative; padding: 190px 0 90px; text-align: center; color: var(--light);
  background: var(--dark) center/cover no-repeat;
  background-image: linear-gradient(rgba(0,29,50,.8), rgba(0,29,50,.8)), url('../img/page-hero.jpg');
}
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.page-hero p  { max-width: 600px; margin: 1.2rem auto 0; color: rgba(242,246,249,.72); font-size: 1rem; }
.breadcrumb { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(242,246,249,.55); margin-bottom: 1rem; }
.breadcrumb a { color: var(--gold); text-decoration: none; }

/* ─ ÜBER UNS ─────────────────────────────────── */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about__img-wrap { position: relative; }
.about__img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; display: block; }
.about__img-accent {
  position: absolute; bottom: -22px; right: -22px;
  width: 52%; aspect-ratio: 4/3; object-fit: cover; object-position: top;
  border: 6px solid var(--light); box-shadow: var(--shadow-lg);
}
.about__text { color: rgba(0,29,50,.72); margin-bottom: 1.4rem; font-size: .97rem; }
.about__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 2.5rem; }
.stat { text-align: center; padding: 1.4rem .75rem; border-top: 2px solid var(--gold); }
.stat__n { font-family: var(--font-h); font-size: 2.4rem; color: var(--gold); font-weight: 700; line-height: 1; }
.stat__l { font-size: .75rem; color: rgba(0,29,50,.55); text-transform: uppercase; letter-spacing: .09em; margin-top: .3rem; }
@media(max-width:800px){
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__img-accent { display: none; }
  .about__img { aspect-ratio: 16/9; }
}

/* ─ BEWERTUNG / PROCESS STEPS ─────────────────── */
.bew { position: relative; overflow: hidden; }
.bew__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .12; }
.bew__inner { position: relative; z-index: 1; }
.bew__steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin: 3.5rem 0; }
.bew-step { text-align: center; }
.bew-step__circle {
  width: 62px; height: 62px; border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1.5rem; color: var(--gold);
  margin: 0 auto 1.4rem;
}
.bew-step__title { font-size: .95rem; font-weight: 600; color: var(--light); margin-bottom: .4rem; }
.bew-step__text  { font-size: .86rem; color: rgba(242,246,249,.58); line-height: 1.6; }
.bew-step--light .bew-step__title { color: var(--dark); }
.bew-step--light .bew-step__text  { color: rgba(0,29,50,.62); }
@media(max-width:768px){ .bew__steps { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px){ .bew__steps { grid-template-columns: 1fr; } }

/* ─ LEISTUNGEN / SERVICE CARDS ────────────────── */
.services__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; margin-top: 4rem; }
.srv-card { background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; transition: var(--ease); text-decoration: none; color: inherit; display: block; border-radius: var(--radius); }
.srv-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.srv-card__img { width: 100%; height: 260px; object-fit: cover; object-position: top; display: block; }
.srv-card__body { padding: 2rem; }
.srv-card__icon {
  width: 48px; height: 48px; background: var(--gold);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem;
  border-radius: var(--radius-sm);
}
.srv-card__icon svg { width: 22px; height: 22px; fill: #fff; }
.srv-card__title { font-size: 1.2rem; margin-bottom: .7rem; color: var(--dark); }
.srv-card__text  { font-size: .88rem; color: rgba(0,29,50,.68); line-height: 1.75; }
@media(max-width:900px){ .services__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

/* ─ SEGMENTE (Komfort / Investment) ───────────── */
.segments { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 4rem; }
.segment-card { position: relative; overflow: hidden; min-height: 340px; display: flex; align-items: flex-end; text-decoration: none; color: var(--light); border-radius: var(--radius); }
.segment-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.segment-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 25%, rgba(0,29,50,.92)); }
.segment-card:hover img { transform: scale(1.06); }
.segment-card__body { position: relative; z-index: 1; padding: 2.4rem; }
.segment-card__body h3 { font-size: 1.6rem; color: var(--light); margin-bottom: .5rem; }
.segment-card__body p  { font-size: .9rem; color: rgba(242,246,249,.78); margin-bottom: 1rem; }
.segment-card__more { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
@media(max-width:768px){ .segments { grid-template-columns: 1fr; } }

/* ─ WARUM WIR / FEATURE GRID ──────────────────── */
.features { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; margin-top: 3.5rem; }
.feature { text-align: center; padding: 0 .5rem; }
.feature__ic { width: 56px; height: 56px; margin: 0 auto 1.2rem; border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.feature__ic svg { width: 24px; height: 24px; fill: var(--gold); }
.feature h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.feature p  { font-size: .9rem; color: rgba(0,29,50,.65); }
.dark-bg .feature p { color: rgba(242,246,249,.62); }
.dark-bg .feature h3 { color: var(--light); }
@media(max-width:768px){ .features { grid-template-columns: 1fr; gap: 2.5rem; max-width: 420px; margin-left:auto; margin-right:auto; } }

/* ─ ANGEBOTE / LISTINGS (statisch) ────────────── */
.listings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px,1fr)); gap: 2rem; margin-top: 2.5rem; }
.prop-card {
  background: rgba(242,246,249,.05); border: 1px solid rgba(193,151,101,.14);
  overflow: hidden; transition: var(--ease); text-decoration: none; display: block;
  border-radius: var(--radius);
}
.light-bg .prop-card { background: #fff; box-shadow: var(--shadow-sm); }
.prop-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 20px 50px rgba(0,0,0,.22); }
.prop-card__img-w { position: relative; overflow: hidden; }
.prop-card__img   { width: 100%; height: 255px; object-fit: cover; display: block; transition: transform .5s ease; }
.prop-card:hover .prop-card__img { transform: scale(1.05); }
.prop-card__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--dark);
  padding: 4px 12px; font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  border-radius: 999px;
}
.prop-card__price {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,29,50,.9));
  padding: 2rem 1.4rem 1.2rem;
  font-family: var(--font-h); font-size: 1.45rem; color: var(--light);
}
.prop-card__body  { padding: 1.4rem; }
.prop-card__title { font-size: 1.05rem; margin-bottom: .4rem; }
.dark-bg .prop-card__title { color: var(--light); }
.prop-card__loc   { font-size: .82rem; color: rgba(0,29,50,.5); margin-bottom: 1rem; display: flex; align-items: center; gap: 5px; }
.dark-bg .prop-card__loc { color: rgba(242,246,249,.5); }
.prop-card__loc svg { width: 13px; height: 13px; fill: var(--gold); flex-shrink: 0; }
.prop-card__details {
  display: flex; gap: 1.2rem; font-size: .82rem; color: rgba(0,29,50,.6);
  border-top: 1px solid rgba(193,151,101,.18); padding-top: .9rem; flex-wrap: wrap;
}
.dark-bg .prop-card__details { color: rgba(242,246,249,.65); }
.prop-card__d { display: flex; align-items: center; gap: 5px; }
.prop-card__d svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }

/* Filter-Leiste */
.filter-bar { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; align-items: center; }
.filter-bar select, .filter-bar input {
  padding: 12px 18px; border: 1px solid rgba(193,151,101,.35);
  background: rgba(242,246,249,.06); color: var(--light);
  font-family: var(--font-b); font-size: .88rem; outline: none; min-width: 170px;
  border-radius: var(--radius-sm);
}
.filter-bar select option { background: var(--dark); }

/* ─ SOCIAL MEDIA ─────────────────────────────── */
.vid-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.vid-card { position: relative; overflow: hidden; background: var(--dark); aspect-ratio: 16/9; border-radius: var(--radius); }
.vid-card img { width: 100%; height: 100%; object-fit: cover; }
.vid-card__ov { position: absolute; inset: 0; background: rgba(0,29,50,.38); display: flex; align-items: center; justify-content: center; transition: var(--ease); }
.vid-card:hover .vid-card__ov { background: rgba(0,29,50,.55); }
.play-ring { width: 54px; height: 54px; border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--ease); }
.vid-card:hover .play-ring { background: var(--gold); transform: scale(1.1); }
.play-ring svg { fill: #fff; width: 18px; height: 18px; margin-left: 3px; }
.vid-card__label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,29,50,.82)); padding: 1.8rem 1rem 1rem; color: var(--light); font-size: .82rem; font-weight: 500; }
.social-links { display: flex; justify-content: center; gap: 1.5rem; margin-top: 3rem; flex-wrap: wrap; }
.social-link { display: flex; align-items: center; gap: .7rem; color: var(--dark); text-decoration: none; font-size: .88rem; font-weight: 500; padding: 12px 22px; border: 2px solid rgba(0,29,50,.14); transition: var(--ease); border-radius: 999px; }
.social-link:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; fill: currentColor; }
@media(max-width:768px){ .vid-grid { grid-template-columns: 1fr; } }

/* ─ TIPPGEBER ────────────────────────────────── */
.tipp__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.tipp__img  { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: top; }
.tipp-steps { margin-top: 2.5rem; }
.tipp-step  { display: flex; align-items: flex-start; gap: 1.4rem; padding-bottom: 2rem; margin-bottom: 2rem; border-bottom: 1px solid rgba(193,151,101,.2); }
.tipp-step:last-child { border: none; margin-bottom: 0; padding-bottom: 0; }
.tipp-step__n { flex-shrink: 0; width: 44px; height: 44px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-size: 1.2rem; color: var(--gold); }
.tipp-step__title { font-size: .95rem; font-weight: 600; color: var(--light); margin-bottom: .25rem; }
.tipp-step__text  { font-size: .88rem; color: rgba(242,246,249,.6); line-height: 1.65; }
.tipp-step--light .tipp-step__title { color: var(--dark); }
.tipp-step--light .tipp-step__text  { color: rgba(0,29,50,.62); }
@media(max-width:800px){ .tipp__grid { grid-template-columns: 1fr; } }

/* ─ FORMULARE ─────────────────────────────────── */
.form-card { background: #fff; box-shadow: var(--shadow-md); padding: 2.5rem; max-width: 680px; margin: 0 auto; border-radius: var(--radius); }
.dark-bg .form-card { background: rgba(242,246,249,.04); box-shadow: none; border: 1px solid rgba(193,151,101,.18); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.fg { margin-bottom: 1rem; }
.fg label { display: block; font-size: .76rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: rgba(0,29,50,.55); margin-bottom: .45rem; }
.dark-bg .fg label { color: rgba(242,246,249,.6); }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 13px 17px; border: 1px solid rgba(0,29,50,.15);
  background: #fff; font-family: var(--font-b); font-size: .93rem; color: var(--dark);
  outline: none; transition: var(--ease); appearance: none;
  border-radius: var(--radius-sm);
}
.dark-bg .fg input, .dark-bg .fg textarea, .dark-bg .fg select { background: rgba(242,246,249,.06); border-color: rgba(193,151,101,.28); color: var(--light); }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(193,151,101,.1); }
.fg textarea { resize: vertical; min-height: 135px; }
.form-check { display: flex; align-items: flex-start; gap: .7rem; margin-bottom: 1.4rem; }
.form-check input { flex-shrink: 0; width: 17px; height: 17px; accent-color: var(--gold); margin-top: 3px; }
.form-check label { font-size: .82rem; color: rgba(0,29,50,.62); }
.dark-bg .form-check label { color: rgba(242,246,249,.6); }
.form-check a { color: var(--gold); text-decoration: none; }
@media(max-width:600px){ .form-row { grid-template-columns: 1fr; } }
.form-success { display: none; margin-top: 1rem; background: rgba(193,151,101,.12); border: 1px solid var(--gold); border-radius: var(--radius-sm); padding: 1rem 1.25rem; font-size: .9rem; color: var(--dark); }
.dark-bg .form-success { color: var(--light); }

/* ─ KONTAKT ──────────────────────────────────── */
.contact__grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 5rem; align-items: start; }
.contact__img  { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; display: block; }
.contact__info { margin-top: 2.5rem; }
.contact__item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.4rem; }
.contact__item svg { width: 19px; height: 19px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact__item span { font-size: .92rem; color: rgba(0,29,50,.72); }
.contact__item a { color: var(--dark); text-decoration: none; }
.contact__item a:hover { color: var(--gold); }
@media(max-width:900px){
  .contact__grid { grid-template-columns: 1fr; }
  .contact__img  { aspect-ratio: 16/9; }
}

/* ─ TEAM ─────────────────────────────────────── */
.team__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.team__photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.team__role { color: var(--gold); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; }
@media(max-width:800px){ .team__grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ─ LEGAL / TEXTSEITEN ────────────────────────── */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 1.5rem; margin: 2.4rem 0 .8rem; }
.legal h3 { font-size: 1.1rem; margin: 1.6rem 0 .5rem; }
.legal p, .legal li { color: rgba(0,29,50,.74); font-size: .95rem; margin-bottom: .8rem; }
.legal ul { padding-left: 1.3rem; }
.legal .placeholder { background: rgba(193,151,101,.12); border-left: 3px solid var(--gold); padding: 1rem 1.2rem; font-size: .9rem; color: rgba(0,29,50,.7); margin-bottom: 1.5rem; }

/* ─ CTA-BAND ─────────────────────────────────── */
.cta-band { text-align: center; }
.cta-band h2 { color: var(--light); margin-bottom: 1rem; }
.cta-band p  { color: rgba(242,246,249,.7); max-width: 560px; margin: 0 auto 2rem; }

/* ─ DIVIDER ──────────────────────────────────── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ─ FOOTER ───────────────────────────────────── */
footer { background: var(--dark); padding: 64px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__logo { height: 44px; filter: brightness(0) invert(1); display: block; margin-bottom: 1.1rem; }
.footer__tag  { font-size: .88rem; color: rgba(242,246,249,.5); max-width: 270px; line-height: 1.7; }
.footer__nap  { font-size: .84rem; color: rgba(242,246,249,.5); line-height: 1.7; margin-top: 1.1rem; }
.footer__nap a { color: rgba(242,246,249,.62); text-decoration: none; }
.footer__nap a:hover { color: var(--gold); }
.footer__head { font-family: var(--font-b); font-size: .76rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer__ul   { list-style: none; }
.footer__ul li { margin-bottom: .7rem; }
.footer__ul a  { color: rgba(242,246,249,.58); text-decoration: none; font-size: .88rem; transition: var(--ease); }
.footer__ul a:hover { color: var(--gold); }
.footer__bottom { padding-top: 2rem; border-top: 1px solid rgba(242,246,249,.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer__copy   { font-size: .78rem; color: rgba(242,246,249,.35); }
.footer__legal  { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: .78rem; color: rgba(242,246,249,.35); text-decoration: none; transition: var(--ease); }
.footer__legal a:hover { color: var(--gold); }
@media(max-width:768px){ .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media(max-width:480px){ .footer__grid { grid-template-columns: 1fr; } }

/* ─ HERO-/OBJEKTVIDEO ─────────────────────────── */
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__overlay { position: absolute; inset: 0; z-index: 0; background: linear-gradient(135deg, rgba(0,29,50,.78) 0%, rgba(0,29,50,.48) 55%, rgba(193,151,101,.12) 100%); }
.vid-card { cursor: pointer; }
.vid-card video { width: 100%; height: 100%; object-fit: cover; }
.vm { position: fixed; inset: 0; background: rgba(0,0,0,.94); z-index: 9000; display: none; align-items: center; justify-content: center; }
.vm.open { display: flex; }
.vm__inner { position: relative; width: 90vw; max-width: 1000px; }
.vm__video { width: 100%; display: block; border-radius: var(--radius); }
.vm__close { position: absolute; top: -42px; right: 0; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; opacity: .7; transition: var(--ease); }
.vm__close:hover { opacity: 1; color: var(--gold); }

/* ─ MOBILES OVERLAY-MENÜ (Redesign) + Burger-Animation ─ */
body.no-scroll { overflow: hidden; }
.nav.scrolled { padding: 12px 0; }
.nav__burger span { transform-origin: center; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media(max-width:980px){
  .nav__mobile {
    display: flex; position: fixed; inset: 0; height: 100vh; width: 100%;
    flex-direction: column; justify-content: center; gap: .15rem;
    background: rgba(0,29,50,.99); backdrop-filter: blur(8px);
    padding: 6rem 2.2rem 2rem; transform: translateX(100%); transition: transform .4s ease;
    overflow-y: auto;
  }
  .nav__mobile.open { transform: translateX(0); }
  .nav__mobile a {
    font-family: var(--font-h); font-size: 1.55rem; text-transform: none; letter-spacing: 0;
    color: var(--light); padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav__mobile a.sub { font-size: 1.05rem; padding-left: .2rem; color: rgba(242,246,249,.7); }
  .nav__burger { position: relative; z-index: 1001; }
}

/* ─ OBJEKT-DETAILSEITE ─ */
.detail { display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: start; }
.detail__hero { width: 100%; border-radius: var(--radius); display: block; aspect-ratio: 16/10; object-fit: cover; }
.detail__gallery { display: grid; grid-template-columns: repeat(4,1fr); gap: .6rem; margin-top: .6rem; }
.detail__gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; cursor: zoom-in; transition: var(--ease); }
.detail__gallery img:hover { opacity: .85; }
.detail__video { width: 100%; border-radius: var(--radius); margin-top: 1.6rem; display: block; }
.detail__specs { display: grid; grid-template-columns: repeat(2,1fr); gap: .9rem 1.6rem; margin: 1.8rem 0; }
.detail__spec { border-top: 1px solid rgba(193,151,101,.25); padding-top: .6rem; }
.detail__spec b { display: block; font-family: var(--font-h); font-size: 1.3rem; color: var(--gold); }
.detail__spec span { font-size: .76rem; color: rgba(0,29,50,.55); text-transform: uppercase; letter-spacing: .08em; }
.detail__aside { position: sticky; top: 92px; background: #fff; box-shadow: var(--shadow-md); border-radius: var(--radius); padding: 1.8rem; }
.detail__price { font-family: var(--font-h); font-size: 1.8rem; color: var(--gold); margin-bottom: .3rem; }
.detail__badge { display: inline-block; background: var(--gold); color: var(--dark); padding: 4px 12px; border-radius: 999px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
@media(max-width:900px){ .detail { grid-template-columns: 1fr; } .detail__aside { position: static; } .detail__gallery { grid-template-columns: repeat(3,1fr); } }
