/* ═══════════════════════════════════════════════════════
   Hausspecht Immobilien — Shared Stylesheet (v2 – Light)
   ═══════════════════════════════════════════════════════ */

/* ─── Variables ─────────────────────────────────────────── */
:root {
  --navy:        #2E3750;
  --navy-mid:    #384466;
  --navy-light:  #42507A;
  --navy-deep:   #1E2840;
  --bg:          #F4F0E8;
  --bg-card:     #FDFCF9;
  --bg-alt:      #EDE7DB;
  --gold:        #C9A84C;
  --gold-light:  #E0C068;
  --gold-dim:    rgba(201,168,76,0.14);
  --gold-line:   rgba(201,168,76,0.30);
  --cream:       #F5F0E8;
  --text:        #2E3750;
  --text-mid:    #3A4A62;
  --muted:       #5A6A82;
  --font-serif:  'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  0.35s var(--ease);
  --shadow-sm:   0 2px 12px rgba(27,34,53,0.08);
  --shadow-md:   0 8px 32px rgba(27,34,53,0.12);
  --shadow-lg:   0 20px 60px rgba(27,34,53,0.16);
  --radius:      12px;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body:has(.pl:not(.done)) { overflow: hidden; }
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }
img { max-width: 100%; display: block; }
address { font-style: normal; }
fieldset { border: none; margin: 0; padding: 0; }

/* ─── Accessibility ──────────────────────────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: 1rem; z-index: 9999;
  padding: 0.6rem 1.25rem; background: var(--gold); color: var(--navy-deep);
  font-weight: 600; font-size: 0.875rem; border-radius: 4px; text-decoration: none;
}
.skip-link:focus { left: 1rem; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ─── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 2rem;
  background: rgba(255,253,250,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(255,253,250,0.99);
  box-shadow: 0 2px 24px rgba(27,34,53,0.10);
}
.navbar-inner {
  height: 72px; display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
  position: relative;
}
.nav-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; margin-left: -1rem; }
.nav-logo-img {
  height: 140px; width: auto;
  filter: none;
  opacity: 1;
  flex-shrink: 0; margin-top: -5px; margin-bottom: -15px;
}
.nav-logo-text { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.nav-logo-name {
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700;
  letter-spacing: 0.06em; color: var(--navy); white-space: nowrap;
}
.nav-logo-sub {
  font-family: var(--font-sans); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; flex: 1; justify-content: flex-end; }
.nav-links a {
  color: var(--navy); font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap;
  position: relative; padding-bottom: 2px; transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  border-radius: 2px; transition: width var(--transition);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  color: var(--navy) !important;
  border: 1.5px solid var(--navy);
  padding: 0.45rem 1.2rem !important;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover { background: var(--navy) !important; color: white !important; }
.nav-cta::after { display: none !important; }
.nav-phone-link {
  display: flex !important; align-items: center; gap: 0.5rem;
  color: var(--text-mid) !important; font-size: 0.8rem !important;
  font-weight: 500 !important; letter-spacing: 0.04em !important;
  text-transform: none !important;
  border-left: 1px solid rgba(27,34,53,0.12);
  padding-left: 2rem !important; padding-bottom: 0 !important; white-space: nowrap;
}
.nav-phone-link::after { display: none !important; }
.nav-phone-link:hover { color: var(--gold) !important; }
.nav-phone-item { margin-left: 0; }
.nav-mobile-header { display: none; }
.nav-close { display: none; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: var(--transition);
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans); font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 8px; cursor: pointer; transition: var(--transition);
  border: none; text-decoration: none; white-space: nowrap;
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }
.btn-primary {
  background: var(--gold); color: var(--navy-deep);
  box-shadow: 0 4px 16px rgba(201,168,76,0.25);
}
.btn-primary:hover:not(:disabled) {
  background: var(--gold-light); color: var(--navy-deep);
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.40);
}
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid rgba(27,34,53,0.25);
}
.btn-outline:hover:not(:disabled) {
  border-color: var(--gold); color: var(--navy);
  background: var(--gold-dim); transform: translateY(-2px);
}
.btn-dark {
  background: var(--navy); color: white;
  box-shadow: 0 4px 16px rgba(27,34,53,0.25);
}
.btn-dark:hover:not(:disabled) {
  background: var(--navy-mid); color: white;
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(27,34,53,0.35);
}
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.8rem; min-height: 44px; }

/* ─── Section Shared ─────────────────────────────────────── */
.section { position: relative; padding: 6rem 2rem; z-index: 1; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); flex-shrink: 0; }
.section-title {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--text); margin-bottom: 1.25rem; line-height: 1.15;
}
.section-subtitle { color: var(--muted); font-size: 1.05rem; max-width: 560px; line-height: 1.75; }

/* ─── Page Hero (sub-pages) ──────────────────────────────── */
.page-hero {
  position: relative; padding: 10rem 2rem 6rem; z-index: 1; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%);
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; }
.page-hero-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.75rem;
  opacity: 0; animation: fadeUp 0.9s 0.2s forwards;
}
.page-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.page-hero h1 {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.1; color: var(--cream); margin-bottom: 1.2rem;
  opacity: 0; animation: fadeUp 1s 0.4s forwards;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  color: rgba(245,240,232,0.75); font-size: 1.1rem; max-width: 520px;
  opacity: 0; animation: fadeUp 1s 0.6s forwards;
}
.page-hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem;
  opacity: 0; animation: fadeUp 1s 0.8s forwards;
}

/* ─── Divider ─────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
  margin: 0;
  position: relative; z-index: 1;
}

/* ─── Cards Generic ──────────────────────────────────────── */
.card {
  background: var(--bg-card); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1px solid rgba(201,168,76,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ─── Form Shared ────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label, .form-group legend {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-mid);
}
.form-group .req { color: var(--gold); opacity: 0.7; }
.form-group input, .form-group select, .form-group textarea {
  background: white; border: 1.5px solid rgba(27,34,53,0.15);
  border-radius: 8px; padding: 0.8rem 1rem; color: var(--text);
  font-family: var(--font-sans); font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; width: 100%; appearance: none; -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem; cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 4px var(--gold-dim);
}
.form-group input.error, .form-group select.error, .form-group textarea.error {
  border-color: #e05454; box-shadow: 0 0 0 4px rgba(224,84,84,0.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* Radio Cards */
.radio-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.75rem; }
.radio-card { position: relative; cursor: pointer; }
.radio-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-card span {
  display: block; padding: 0.85rem 1rem; border: 1.5px solid rgba(27,34,53,0.15);
  border-radius: 8px; font-size: 0.85rem; color: var(--muted);
  text-align: center; transition: var(--transition);
  background: white; line-height: 1.3;
}
.radio-card input:checked + span {
  border-color: var(--gold); color: var(--text);
  background: var(--gold-dim); box-shadow: inset 0 0 0 1px var(--gold);
}
.radio-card:hover span { border-color: var(--gold-line); color: var(--text); }
.radio-cards.error .radio-card span { border-color: #e05454; }

/* Form feedback */
.form-feedback {
  padding: 1rem 1.25rem; border-radius: 8px; font-size: 0.9rem; line-height: 1.5; display: none;
}
.form-feedback.success { display: block; background: rgba(52,168,83,0.10); border: 1px solid rgba(52,168,83,0.35); color: #2d7a3e; }
.form-feedback.error   { display: block; background: rgba(224,84,84,0.10); border: 1px solid rgba(224,84,84,0.35); color: #c02020; }
.form-success { text-align: center; padding: 3rem 2rem; }
.form-success .success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(52,168,83,0.12); border: 2px solid rgba(52,168,83,0.45);
  color: #3a9a4a; font-size: 2rem; line-height: 64px; margin: 0 auto 1.5rem;
}
.form-success h3 { font-family: var(--font-serif); color: var(--text); font-size: 1.4rem; margin-bottom: 1rem; }
.form-success p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 2rem; }

/* ─── WhatsApp FAB ───────────────────────────────────────── */
.whatsapp-fab {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition); text-decoration: none;
}
.whatsapp-fab:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.6); color: white; }
.whatsapp-fab svg { width: 28px; height: 28px; fill: white; }
.whatsapp-fab::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.35); animation: pulse 2.2s infinite;
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer { background: var(--navy-deep); position: relative; z-index: 1; color: var(--cream); }
.footer-rule { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.footer-inner {
  max-width: 1280px; margin: 0 auto; padding: 5rem 2rem 3rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-logo { height: 72px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-slogan { font-family: var(--font-serif); font-style: italic; color: rgba(245,240,232,0.65); font-size: 1rem; }
.footer-heading { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-contact p, .footer-contact a { font-size: 0.9rem; color: rgba(245,240,232,0.6); line-height: 1.9; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-links ul, .footer-legal-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a, .footer-legal-col a { font-size: 0.9rem; color: rgba(245,240,232,0.6); }
.footer-links a:hover, .footer-legal-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 1.5rem 2rem; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(245,240,232,0.4); }

/* ─── Reveal ─────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Animations ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%   { opacity: 1; transform: scale(1); }
  70%  { opacity: 0; transform: scale(1.5); }
  100% { opacity: 0; transform: scale(1.5); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ─── Spinner ────────────────────────────────────────────── */
.spinner {
  width: 16px; height: 16px; border: 2px solid rgba(27,34,53,0.2);
  border-top-color: var(--navy-deep); border-radius: 50%;
  animation: spin 0.7s linear infinite; display: inline-block;
}

/* ─── FAQ Accordion ──────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; margin-top: 3rem; max-width: 820px; }
.faq-item {
  border-bottom: 1px solid rgba(27,34,53,0.10);
  background: var(--bg-card);
  border-radius: 0;
  overflow: hidden;
  transition: background var(--transition);
}
.faq-item:first-child { border-top: 1px solid rgba(27,34,53,0.10); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.4rem 1.5rem; cursor: pointer; font-size: 1rem; font-weight: 500;
  color: var(--text); list-style: none; transition: color var(--transition);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; }
.faq-q::after {
  content: '+'; color: var(--gold); font-size: 1.5rem; font-weight: 300;
  line-height: 1; flex-shrink: 0; transition: transform var(--transition);
}
details[open] > .faq-q { color: var(--gold); }
details[open] > .faq-q::after { content: '−'; }
.faq-a { padding: 0 1.5rem 1.4rem; color: var(--muted); line-height: 1.8; font-size: 0.95rem; }

/* ─── Mobile ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed; inset: 0; height: 100dvh; z-index: 99;
    background: white; flex-direction: column; align-items: center;
    justify-content: center; gap: 0; padding: 72px 0 2rem; overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 1.2rem 2rem; font-size: 1.1rem; color: var(--text); }
  .nav-links a::after { display: none; }
  .nav-links { flex: none; }
  .nav-cta { border: none !important; padding: 1.2rem 2rem !important; color: var(--gold) !important; }
  .nav-phone-link { width: 100%; border-left: none !important; padding: 1.2rem 2rem !important; justify-content: center; font-size: 1.1rem !important; }
  .nav-phone-link svg { display: none; }
  .nav-phone-item { margin-left: 0; }
  .nav-toggle { display: flex; }
  .nav-logo-sub { display: none; }
  .nav-logo-img { height: 110px; width: auto; object-fit: contain; margin-top: -8px; margin-bottom: -22px; margin-left: -10px; }
  .nav-mobile-header {
    display: flex !important; align-items: center; justify-content: space-between;
    width: 100%; padding: 0 1.5rem; position: absolute; top: 0; left: 0;
    height: 64px; border-bottom: 1px solid rgba(27,34,53,0.10);
  }
  .nav-mobile-home {
    font-family: var(--font-serif); font-size: 0.875rem; color: var(--gold) !important;
    letter-spacing: 0.06em; padding: 0 !important;
    display: inline-flex !important; align-items: center; gap: 0.4rem;
  }
  .nav-mobile-home::before { content: '←'; font-size: 1rem; }
  .nav-close {
    background: none; border: 1px solid rgba(27,34,53,0.15); color: var(--text);
    font-size: 1.2rem; width: 36px; height: 36px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background var(--transition), color var(--transition);
  }
  .nav-close:hover { background: var(--gold); color: white; border-color: var(--gold); }
  .page-hero { padding: 6rem 1.25rem 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 4rem 1.25rem; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .btn { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════
   Erweiterungen: Leichter, freundlicher, interaktiv
   ═══════════════════════════════════════════════════════ */

/* ─── Nav Dropdown ────────────────────────────────────────── */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown::after {
  content: ''; position: absolute; top: 100%;
  left: -8px; right: -8px; height: 18px; z-index: 299;
}
.nav-item-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-chevron {
  width: 10px; height: 10px; flex-shrink: 0;
  transition: transform var(--transition);
}
.nav-item-dropdown:hover .nav-chevron,
.nav-item-dropdown:focus-within .nav-chevron { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 230px; background: white;
  border-radius: 12px; box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,168,76,0.18);
  padding: 0.6rem 0; opacity: 0; pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 300;
}
.nav-dropdown::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%); width: 12px; height: 12px;
  background: white; border-left: 1px solid rgba(201,168,76,0.18);
  border-top: 1px solid rgba(201,168,76,0.18);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  transform: translateX(-50%) rotate(45deg);
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { list-style: none; }
.nav-dropdown a {
  display: flex !important; align-items: center; gap: 0.6rem;
  padding: 0.65rem 1.2rem !important;
  font-size: 0.85rem !important; color: var(--text-mid) !important;
  font-weight: 400 !important; letter-spacing: 0.02em !important;
  text-transform: none !important; white-space: nowrap;
  transition: color var(--transition), background var(--transition);
  border-bottom: none !important; padding-bottom: 0.65rem !important;
}
.nav-dropdown a:hover { color: var(--gold) !important; background: var(--gold-dim); }
.nav-dropdown a::after { display: none !important; }
.nav-dropdown .dd-icon {
  width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; opacity: 0.75;
}
.nav-dropdown .dd-label { display: flex; flex-direction: column; }
.nav-dropdown .dd-sub { font-size: 0.7rem; color: var(--muted); margin-top: 1px; }
/* Mobile dropdown */
.nav-dropdown-mobile { display: none; }

/* ─── Helle Seiten-Hero Variante ──────────────────────────── */
.page-hero-light {
  position: relative; padding: 10rem 2rem 6rem;
  background: linear-gradient(160deg, #ffffff 0%, var(--bg) 60%, var(--bg-alt) 100%);
  overflow: hidden;
}
.page-hero-light::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-dim) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-light::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}
.page-hero-light .page-hero-inner { position: relative; z-index: 1; }
.page-hero-light .page-hero-eyebrow {
  color: var(--gold); opacity: 0; animation: fadeUp 0.9s 0.2s forwards;
}
.page-hero-light h1 {
  color: var(--navy); opacity: 0; animation: fadeUp 1s 0.4s forwards;
}
.page-hero-light h1 em { color: var(--gold); font-style: italic; }
.page-hero-light p {
  color: var(--text-mid); opacity: 0; animation: fadeUp 1s 0.6s forwards;
}
.page-hero-light .page-hero-actions {
  opacity: 0; animation: fadeUp 1s 0.8s forwards;
}

/* ─── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--muted); margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gold-line); }
.breadcrumb span { color: var(--text-mid); font-weight: 500; }

/* ─── Trust Badges ────────────────────────────────────────── */
.trust-bar {
  background: white; border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 1.5rem 2rem;
}
.trust-bar-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 2.5rem;
  justify-content: center; flex-wrap: wrap;
}
.trust-badge {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.82rem; color: var(--text-mid); font-weight: 500;
  white-space: nowrap;
}
.trust-badge svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ─── Section weißer Hintergrund ─────────────────────────── */
.section-white { background: #ffffff; }
.section-light { background: var(--bg); }
.section-alt { background: var(--bg-alt); }

/* ─── Intro Split (Bild links, Text rechts) ───────────────── */
.intro-split {
  padding: 5rem 2rem; background: white;
}
.intro-split-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.intro-split-image {
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3;
  position: relative;
}
.intro-split-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 15%;
  transition: transform 8s ease;
}
.intro-split-image:hover img { transform: scale(1.04); }
.intro-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: white; border-radius: 10px; padding: 0.75rem 1.1rem;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.82rem; font-weight: 600; color: var(--navy);
}
.intro-badge svg { width: 18px; height: 18px; color: var(--gold); }

/* ─── Checkmark Liste ─────────────────────────────────────── */
.check-list {
  list-style: none; display: flex; flex-direction: column;
  gap: 0.65rem; margin-top: 1.5rem;
}
.check-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.95rem; color: var(--text-mid); line-height: 1.55;
}
.check-list li::before {
  content: '';
  flex-shrink: 0; margin-top: 3px;
  width: 18px; height: 18px;
  background: var(--gold-dim); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ─── Feature Grid (3 Spalten) ────────────────────────────── */
.feat-section { padding: 5rem 2rem; }
.feat-inner { max-width: 1280px; margin: 0 auto; }
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.feat-card {
  background: white; border-radius: 16px; padding: 2rem;
  box-shadow: 0 2px 16px rgba(27,34,53,0.07);
  border: 1px solid rgba(201,168,76,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feat-icon {
  width: 52px; height: 52px; background: var(--gold-dim);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; color: var(--gold); margin-bottom: 1.25rem;
}
.feat-icon svg { width: 24px; height: 24px; }
.feat-title {
  font-family: var(--font-serif); font-size: 1.1rem;
  font-weight: 700; color: var(--text); margin-bottom: 0.5rem;
}
.feat-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ─── Ablauf Timeline ─────────────────────────────────────── */
.process-sect { padding: 5rem 2rem; }
.process-sect-inner { max-width: 1280px; margin: 0 auto; }
.timeline {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; margin-top: 3rem; position: relative;
}
.timeline::before {
  content: ''; position: absolute;
  top: 26px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0.35; z-index: 0;
}
.tl-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 0.75rem; position: relative; z-index: 1;
}
.tl-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: white; border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700;
  color: var(--gold); margin-bottom: 1rem; box-shadow: var(--shadow-sm);
  transition: background var(--transition), color var(--transition);
}
.tl-step:hover .tl-circle { background: var(--gold); color: white; }
.tl-title { font-weight: 700; font-size: 0.88rem; color: var(--text); margin-bottom: 0.3rem; }
.tl-desc { font-size: 0.77rem; color: var(--muted); line-height: 1.5; }

/* ─── Kosten / Info Box ───────────────────────────────────── */
.info-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 16px; padding: 2.5rem; display: flex;
  align-items: flex-start; gap: 1.5rem;
}
.info-box-icon { color: var(--gold); flex-shrink: 0; }
.info-box-icon svg { width: 36px; height: 36px; }
.info-box-title {
  font-family: var(--font-serif); font-size: 1.1rem;
  font-weight: 700; color: var(--cream); margin-bottom: 0.4rem;
}
.info-box-text { font-size: 0.9rem; color: rgba(245,240,232,0.7); line-height: 1.7; }
.info-box-text strong { color: var(--gold); }

/* ─── Helle CTA Box ───────────────────────────────────────── */
.cta-light {
  background: var(--bg-alt); padding: 5rem 2rem;
  border-top: 1px solid var(--gold-line); border-bottom: 1px solid var(--gold-line);
}
.cta-light-inner {
  max-width: 860px; margin: 0 auto; text-align: center;
}
.cta-light h2 {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700; color: var(--navy); margin-bottom: 1rem;
}
.cta-light p { color: var(--text-mid); font-size: 1.05rem; margin-bottom: 2.5rem; line-height: 1.75; }
.cta-light-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Dunkle CTA Banner ───────────────────────────────────── */
.cta-dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 6rem 2rem; text-align: center; position: relative; overflow: hidden;
}
.cta-dark::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); width: 500px; height: 500px;
  border: 1px solid var(--gold-dim); border-radius: 50%; pointer-events: none;
}
.cta-dark-inner { position: relative; z-index: 1; }
.cta-dark h2 {
  font-family: var(--font-serif); font-size: clamp(1.8rem,4vw,2.8rem);
  font-weight: 700; color: var(--cream); margin-bottom: 1rem;
}
.cta-dark p {
  color: rgba(245,240,232,0.65); font-size: 1.05rem;
  margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto;
}
.cta-dark-actions { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }

/* ─── FAQ verbessert ──────────────────────────────────────── */
.faq-sect { padding: 5rem 2rem; }
.faq-sect-inner { max-width: 1280px; margin: 0 auto; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3rem; }
.faq-card {
  background: white; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(201,168,76,0.12);
  box-shadow: 0 2px 12px rgba(27,34,53,0.06);
  transition: box-shadow var(--transition);
}
.faq-card:hover { box-shadow: var(--shadow-sm); }
.faq-card details { }
.faq-card .faq-q {
  padding: 1.35rem 1.5rem; font-size: 0.95rem;
  font-weight: 600; border-bottom: none;
}
.faq-card .faq-a { padding: 0 1.5rem 1.35rem; border-top: 1px solid rgba(27,34,53,0.07); padding-top: 1rem; }
.faq-card:first-child { border-top: none; }

/* ─── Text Content Block ──────────────────────────────────── */
.text-block { max-width: 820px; }
.text-block p {
  color: var(--text-mid); line-height: 1.85; margin-bottom: 1.25rem;
  font-size: 1rem;
}
.text-block h3 {
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700;
  color: var(--text); margin: 2rem 0 0.75rem;
}

/* ─── Highlight Numbers ───────────────────────────────────── */
.numbers-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 4rem 2rem;
}
.numbers-bar-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; text-align: center;
}
.nb-value {
  font-family: var(--font-serif); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--gold); line-height: 1;
}
.nb-label { font-size: 0.88rem; color: rgba(245,240,232,0.65); margin-top: 0.5rem; line-height: 1.5; }

/* ─── Content Split (2-col → 1-col on mobile) ───────────── */
.content-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}

/* ─── Sub-Service Links ───────────────────────────────────── */
.sub-services {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 3rem;
}
.sub-service-card {
  background: white; border-radius: 14px; padding: 2rem;
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 2px 12px rgba(27,34,53,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.sub-service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sub-service-card .ss-icon {
  width: 48px; height: 48px; background: var(--gold-dim); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 1rem;
}
.sub-service-card .ss-icon svg { width: 22px; height: 22px; }
.sub-service-card h3 {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.5rem;
}
.sub-service-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.6; flex: 1; }
.sub-service-card a {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gold); margin-top: 1.25rem;
  transition: gap var(--transition);
}
.sub-service-card a:hover { gap: 0.7rem; color: var(--navy); }

/* ─── Responsive Ergänzungen ──────────────────────────────── */
@media (max-width: 900px) {
  .intro-split-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 1.5rem; }
  .timeline::before { display: none; }
  .tl-step { flex-direction: row; text-align: left; gap: 1.25rem; align-items: flex-start; }
  .tl-circle { flex-shrink: 0; margin-bottom: 0; }
  .faq-grid { grid-template-columns: 1fr; }
  .numbers-bar-inner { grid-template-columns: repeat(3, 1fr); }
  .sub-services { grid-template-columns: 1fr 1fr; }
  .content-split { grid-template-columns: 1fr; gap: 2rem; }
  .cta-dark-actions, .cta-light-actions { flex-direction: column; align-items: stretch; max-width: 360px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 640px) {
  .feat-grid { grid-template-columns: 1fr; }
  .numbers-bar-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .sub-services { grid-template-columns: 1fr; }
  .trust-bar { display: none; }
  .page-hero-light { padding: 7rem 1.25rem 3.5rem; }
  .intro-split { padding: 6rem 1.25rem 3rem; }
  .feat-section { padding: 3rem 1.25rem; }
  .process-sect { padding: 3rem 1.25rem; }
  .faq-sect { padding: 3rem 1.25rem; }
}
@media (max-width: 768px) {
  .nav-item-dropdown .nav-dropdown { display: none; }
  .nav-dropdown-mobile {
    display: none; padding-left: 1.5rem;
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-item-dropdown.mobile-open .nav-dropdown-mobile {
    display: block; max-height: 300px;
  }
  .nav-item-dropdown.mobile-open > a .nav-chevron {
    transform: rotate(180deg);
  }
  .nav-dropdown-mobile li { list-style: none; }
  .nav-dropdown-mobile a {
    display: block !important; padding: 0.8rem 2rem !important;
    font-size: 0.95rem !important; color: var(--muted) !important;
    text-transform: none !important; letter-spacing: 0.02em !important;
  }
}
