/* Thieme Immobilien — shared stylesheet */

:root {
    --bg: #141414;
    --bg-alt: #1c1c1c;
    --bg-dark: #0d0d0d;
    --text: #EFE3C6;
    --text-muted: rgba(239,227,198,.7);
    --text-dim: rgba(239,227,198,.45);
    --gold: #C9A96A;
    --gold-bright: #DDB97B;
    --gold-soft: rgba(201,169,106,.45);
    --gold-ghost: rgba(201,169,106,.12);
    --line: rgba(239,227,198,.09);
    --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
    --sans: system-ui, -apple-system, "Segoe UI", sans-serif;
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--serif);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    /* subtile Papier-Textur */
    background-image:
      radial-gradient(ellipse at top, rgba(201,169,106,.04) 0%, transparent 60%),
      radial-gradient(ellipse at bottom, rgba(201,169,106,.02) 0%, transparent 60%),
      url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.79 0 0 0 0 0.66 0 0 0 0 0.42 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-attachment: fixed;
  }
  a { color: var(--gold); text-decoration: none; }
  a:hover { color: var(--gold-bright); }

  .wrap { max-width: 1080px; margin: 0 auto; padding: 0 40px; }
  .wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 40px; }

  /* HEADER */
  .site-header {
    padding: 22px 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(20,20,20,.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(239,227,198,.08);
    z-index: 20;
  }
  .site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  .brand-lockup {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
  }
  .brand-mark {
    height: 56px;
    display: block;
    flex-shrink: 0;
  }
  .brand-mark img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
  }
  .brand-divider {
    width: 1px; height: 34px;
    background: var(--gold-soft);
    flex-shrink: 0;
  }
  .brand-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    font-family: var(--serif);
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text);
    font-weight: 400;
  }
  .brand-wordmark span:last-child {
    color: var(--text-muted);
  }
  @media (max-width: 800px) {
    .brand-mark { height: 44px; }
    .brand-divider, .brand-wordmark { display: none; }
  }
  .site-header nav {
    display: flex;
    gap: 28px;
    align-items: center;
  }
  .site-header nav a {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    opacity: .8;
    transition: color .18s ease, opacity .18s ease;
  }
  .site-header nav a:hover {
    color: var(--gold);
    opacity: 1;
    text-decoration: none;
  }
  .site-header nav a.nav-cta {
    padding: 8px 18px;
    border: 1px solid var(--gold-soft);
    color: var(--gold);
    opacity: 1;
  }
  .site-header nav a.nav-cta:hover {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
  }
  @media (max-width: 800px) {
    .site-header nav a:not(.nav-cta) { display: none; }
  }

  /* HERO */
  .hero {
    padding: 240px 0 200px;
    position: relative;
    overflow: hidden;
    background-image:
      linear-gradient(to bottom,
        rgba(15,15,15,.85) 0%,
        rgba(15,15,15,.5) 35%,
        rgba(15,15,15,.55) 65%,
        rgba(15,15,15,.95) 100%),
      url("luftbild.webp");
    background-size: cover;
    background-position: center 45%;
    background-repeat: no-repeat;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(201,169,106,.08) 0%, transparent 55%);
    pointer-events: none;
  }
  .hero > * { position: relative; z-index: 1; }
  .kicker {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .kicker::before {
    content: "";
    display: inline-block;
    width: 30px; height: 1px;
    background: var(--gold);
  }
  h1 {
    font-family: var(--serif);
    font-size: clamp(46px, 7vw, 82px);
    line-height: 1.05;
    font-weight: 300;
    margin: 0;
    max-width: 900px;
    letter-spacing: -0.5px;
  }
  h1 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
  }
  .divider {
    width: 60px; height: 1px;
    background: var(--gold);
    margin: 48px 0 36px;
  }
  .lead {
    font-family: var(--sans);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 0 52px 0;
    font-weight: 300;
  }
  .cta {
    display: inline-block;
    padding: 16px 34px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: var(--text);
    border: 1px solid var(--gold);
    transition: background .2s ease, color .2s ease;
    position: relative;
  }
  .cta:hover {
    background: var(--gold);
    color: var(--bg);
  }

  /* SECTIONS */
  section {
    padding: 120px 0;
    position: relative;
  }
  section + section { border-top: 1px solid var(--line); }
  .section-kicker {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
  }
  h2 {
    font-family: var(--serif);
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.15;
    font-weight: 300;
    margin: 0 0 72px 0;
    max-width: 720px;
    letter-spacing: -0.3px;
  }
  h2 em { font-style: italic; color: var(--gold); font-weight: 300; }

  /* BIG-TYPE PULL-QUOTE */
  .pullquote {
    padding: 140px 0;
    background: var(--bg-dark);
    text-align: center;
    position: relative;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .pullquote::before {
    content: "„";
    position: absolute;
    top: 20px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--serif);
    font-size: 120px;
    color: var(--gold-ghost);
    line-height: 1;
  }
  .pullquote-text {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 46px);
    font-style: italic;
    font-weight: 300;
    line-height: 1.3;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 40px;
    color: var(--text);
  }
  .pullquote-text em {
    color: var(--gold);
    font-style: italic;
  }

  /* PULLQUOTE MIT LUFTBILD-BACKGROUND (Bild-URL kommt via inline style="background-image:...") */
  .pullquote-image {
    padding: 220px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .pullquote-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at center, rgba(15,15,15,.7) 0%, rgba(15,15,15,.55) 60%, rgba(15,15,15,.85) 100%);
    pointer-events: none;
    top: 0; left: 0;
    transform: none;
    font-size: unset;
  }
  .pullquote-image > * { position: relative; z-index: 1; }
  .pullquote-image .pullquote-text {
    color: #FBF3DC;
    text-shadow:
      0 2px 6px rgba(0,0,0,.85),
      0 0 30px rgba(0,0,0,.6),
      0 0 60px rgba(0,0,0,.4);
  }
  @media (max-width: 800px) {
    .pullquote-image { padding: 150px 0; }
  }

  /* GRUNDSÄTZE */
  .pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
  }
  .pillar {
    padding-top: 24px;
    border-top: 1px solid var(--gold-soft);
    position: relative;
  }
  .pillar-num {
    position: absolute;
    top: -14px;
    left: 0;
    background: var(--bg);
    padding-right: 12px;
    font-family: var(--serif);
    font-size: 14px;
    color: var(--gold);
    font-style: italic;
  }
  .pillar h3 {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--text);
    margin: 0 0 16px 0;
    font-weight: 400;
  }
  .pillar p {
    font-family: var(--sans);
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
    font-weight: 300;
  }

  /* LÖSEN */
  .intro {
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 640px;
    margin: -50px 0 56px 0;
    font-weight: 300;
  }
  .loesen-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 780px;
  }
  .loesen-list li {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.45;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 24px;
    align-items: baseline;
    transition: padding-left .3s ease;
  }
  .loesen-list li:hover { padding-left: 12px; }
  .loesen-list li:last-child { border-bottom: none; }
  .loesen-num {
    font-family: var(--serif);
    font-size: 14px;
    font-style: italic;
    color: var(--gold);
  }

  /* METHODIK */
  .method {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 56px;
  }
  .method-item {
    padding: 32px 0;
  }
  .method-item h3 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--text);
    margin: 0 0 12px 0;
    display: flex;
    align-items: baseline;
    gap: 14px;
  }
  .method-item h3::before {
    content: "";
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    transform: translateY(-4px);
  }
  .method-item p {
    font-family: var(--sans);
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 0 22px;
    font-weight: 300;
  }

  /* FÜR WEN */
  .fuerwen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .fw-card {
    padding: 52px 44px;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    position: relative;
    transition: border-color .2s ease;
  }
  .fw-card:hover { border-color: var(--gold-soft); }
  .fw-card h3 {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 24px 0;
    font-weight: 500;
  }
  .fw-card p {
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1.5;
    color: var(--text);
    margin: 0;
    font-weight: 400;
  }

  /* REGION */
  .region {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .region-map {
    max-width: 380px;
    margin: 0 auto;
  }
  .region-map svg {
    width: 100%;
    height: auto;
  }
  .region-facts {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .fact {
    padding-left: 24px;
    border-left: 1px solid var(--gold-soft);
  }
  .fact-hd {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .fact-body {
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.4;
    color: var(--text);
    font-weight: 400;
  }

  /* KONTAKT */
  .kontakt {
    padding: 160px 0 140px;
    text-align: center;
    background: var(--bg-dark);
    border-top: 1px solid var(--line);
    position: relative;
    overflow: hidden;
  }
  .kontakt::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(201,169,106,.05) 0%, transparent 60%);
    pointer-events: none;
  }
  .kontakt h2 {
    margin: 0 auto 14px;
    max-width: none;
    position: relative;
  }
  .kontakt .antwort {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 48px;
    position: relative;
  }
  .kontakt a.mail {
    font-family: var(--serif);
    font-size: clamp(24px, 3vw, 34px);
    color: var(--gold);
    border-bottom: 1px solid var(--gold-soft);
    padding-bottom: 6px;
    font-weight: 400;
    position: relative;
  }
  .kontakt .adr {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 56px;
    line-height: 1.8;
    letter-spacing: 0.5px;
    font-weight: 300;
    position: relative;
  }

  /* FOOTER */
  footer {
    padding: 70px 0 40px;
  }
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 44px;
  }
  .wordmark {
    font-family: var(--serif);
    font-size: 16px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--text);
    font-weight: 400;
  }
  .footer-claim {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--text-dim);
    letter-spacing: 1px;
    margin-top: 6px;
  }
  .footer-links {
    display: flex;
    gap: 28px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
  }
  .footer-links a { color: var(--text-muted); }
  .footer-legal {
    padding-top: 28px;
    border-top: 1px solid var(--line);
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 1.2px;
    color: var(--text-dim);
    text-align: center;
  }

  /* SCROLL-REVEAL ANIMATIONEN */
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .9s cubic-bezier(.22,.61,.36,1),
                  transform .9s cubic-bezier(.22,.61,.36,1);
      will-change: opacity, transform;
    }
    .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-stagger > * {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .7s cubic-bezier(.22,.61,.36,1),
                  transform .7s cubic-bezier(.22,.61,.36,1);
    }
    .reveal-stagger.in > *:nth-child(1) { transition-delay: .00s; }
    .reveal-stagger.in > *:nth-child(2) { transition-delay: .12s; }
    .reveal-stagger.in > *:nth-child(3) { transition-delay: .24s; }
    .reveal-stagger.in > *:nth-child(4) { transition-delay: .36s; }
    .reveal-stagger.in > *:nth-child(5) { transition-delay: .48s; }
    .reveal-stagger.in > * {
      opacity: 1;
      transform: translateY(0);
    }

    /* SPEZIAL: Bullets fliegen von links ein — deutlich, einzeln, langsamer */
    .loesen-list.reveal-stagger > li {
      opacity: 0;
      transform: translateX(-80px);
      transition: opacity 1s cubic-bezier(.22,.61,.36,1),
                  transform 1s cubic-bezier(.22,.61,.36,1);
    }
    .loesen-list.reveal-stagger.in > li {
      opacity: 1;
      transform: translateX(0);
    }
    .loesen-list.reveal-stagger.in > li:nth-child(1) { transition-delay: .00s; }
    .loesen-list.reveal-stagger.in > li:nth-child(2) { transition-delay: .35s; }
    .loesen-list.reveal-stagger.in > li:nth-child(3) { transition-delay: .70s; }
    .loesen-list.reveal-stagger.in > li:nth-child(4) { transition-delay: 1.05s; }
    .loesen-list.reveal-stagger.in > li:nth-child(5) { transition-delay: 1.40s; }
    /* Hero elements individually */
    .hero .kicker,
    .hero h1,
    .hero .divider,
    .hero .lead,
    .hero .cta {
      opacity: 0;
      transform: translateY(18px);
      animation: heroIn 1s cubic-bezier(.22,.61,.36,1) forwards;
    }
    .hero .kicker { animation-delay: .1s; }
    .hero h1 { animation-delay: .28s; }
    .hero .divider { animation-delay: .5s; }
    .hero .lead { animation-delay: .62s; }
    .hero .cta { animation-delay: .8s; }
    @keyframes heroIn {
      to { opacity: 1; transform: translateY(0); }
    }
  }

  /* Responsive */
  @media (max-width: 800px) {
    .wrap, .wrap-narrow { padding: 0 24px; }
    .hero { padding: 100px 0 110px; }
    section { padding: 80px 0; }
    .pullquote { padding: 90px 0; }
    .pillars { grid-template-columns: 1fr; gap: 40px; }
    .method { grid-template-columns: 1fr; gap: 8px; }
    .fuerwen { grid-template-columns: 1fr; gap: 20px; }
    .region { grid-template-columns: 1fr; gap: 50px; }
    .region-map { max-width: 260px; }
    .kontakt { padding: 100px 0 90px; }
    .footer-top { flex-direction: column; align-items: flex-start; }
    .loesen-list li { grid-template-columns: 30px 1fr; gap: 14px; font-size: 20px; }
  }

/* =========================================
   LEGAL PAGES (Impressum / Datenschutz)
   ========================================= */
.legal-page main {
  padding: 180px 0 100px;
}
.legal-page h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.15;
  font-weight: 300;
  margin: 0 0 12px 0;
  letter-spacing: -0.3px;
}
.legal-page .subtitle {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 60px 0;
}
.legal-body {
  max-width: 720px;
}
.legal-body h2 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 48px 0 18px 0;
  font-weight: 500;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p,
.legal-body li {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
  margin: 0 0 16px 0;
}
.legal-body strong {
  color: var(--text);
  font-weight: 500;
}
.legal-body ul {
  padding-left: 22px;
  margin: 0 0 20px 0;
}
.legal-body li { margin-bottom: 6px; }
.legal-body a {
  color: var(--gold);
  border-bottom: 1px solid rgba(201,169,106,.35);
  padding-bottom: 1px;
  transition: color .18s ease, border-color .18s ease;
}
.legal-body a:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
  text-decoration: none;
}
.legal-body address {
  font-style: normal;
  line-height: 1.7;
  color: var(--text-muted);
}
.legal-footer-note {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text-dim);
  font-style: italic;
}

/* Footer-Logo (mit Wortmarke, ohne Claim) */
.footer-logo {
  height: 90px;
  width: auto;
  display: block;
  opacity: .92;
}
@media (max-width: 720px) {
  .footer-logo { height: 70px; }
}

/* Grundsätze: jeder Pillar aus einer anderen Richtung */
@media (prefers-reduced-motion: no-preference) {
  .pillars.reveal-stagger > .pillar {
    opacity: 0;
    transition: opacity 1s cubic-bezier(.22,.61,.36,1),
                transform 1s cubic-bezier(.22,.61,.36,1);
    /* override default translateY(20) — jede eigene Richtung */
  }
  .pillars.reveal-stagger > .pillar:nth-child(1) { transform: translateX(-70px); }
  .pillars.reveal-stagger > .pillar:nth-child(2) { transform: translateY(50px); }
  .pillars.reveal-stagger > .pillar:nth-child(3) { transform: translateX(70px); }

  .pillars.reveal-stagger.in > .pillar { opacity: 1; transform: none; }
  .pillars.reveal-stagger.in > .pillar:nth-child(1) { transition-delay: 0s; }
  .pillars.reveal-stagger.in > .pillar:nth-child(2) { transition-delay: .35s; }
  .pillars.reveal-stagger.in > .pillar:nth-child(3) { transition-delay: .70s; }
}

/* =========================================
   KONTAKT-FORMULAR
   ========================================= */
.contact-form {
  max-width: 640px;
  margin: 48px auto 40px;
  text-align: left;
  display: grid;
  gap: 22px;
}
.form-row {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-bottom: 1px solid var(--gold-soft);
  padding: 14px 16px;
  border-radius: 0;
  outline: none;
  transition: border-color .18s ease, background .18s ease;
  width: 100%;
  font-weight: 300;
}
.form-field textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--sans);
  line-height: 1.6;
}
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23C9A96A' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}
.form-field select option {
  background: var(--bg);
  color: var(--text);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-dim);
  font-weight: 300;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.05);
}
.form-honeypot {
  position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;
}
.form-submit {
  margin-top: 8px;
  padding: 16px 34px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
  justify-self: start;
}
.form-submit:hover {
  background: var(--gold);
  color: var(--bg);
}
.contact-alt {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-dim);
  text-transform: uppercase;
}
.contact-alt a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-soft);
  margin-left: 12px;
  text-transform: none;
  letter-spacing: normal;
  font-size: 14px;
  padding-bottom: 2px;
}

/* =========================================
   MICRO-INTERAKTIONEN
   ========================================= */
/* Nav-Underline von links wachsen */
.site-header nav a:not(.nav-cta) {
  position: relative;
}
.site-header nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s cubic-bezier(.22,.61,.36,1);
}
.site-header nav a:not(.nav-cta):hover::after {
  width: 100%;
}

/* Grundsätze-Karten: dezenter Lift + Gold-Kopflinie bei hover */
.pillar {
  transition: transform .35s ease, border-top-color .35s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  border-top-color: var(--gold);
}

/* Loesen-List: bei hover subtile Gold-Highlight-Line links */
.loesen-list li {
  position: relative;
  transition: padding-left .35s ease, color .35s ease;
}
.loesen-list li::after {
  content: "";
  position: absolute;
  left: 0; top: 30px; bottom: 30px;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s ease;
}
.loesen-list li:hover::after {
  transform: scaleY(1);
}

/* Method-Items: dezenter Gold-Dot-Grow bei hover */
.method-item h3::before {
  transition: transform .35s ease, background .35s ease;
}
.method-item:hover h3::before {
  transform: translateY(-4px) scale(1.4);
}

/* =========================================
   FEHLER-BANNER (nach fehlgeschlagenem Formular)
   ========================================= */
.form-error-banner {
  display: none;
  max-width: 640px;
  margin: 40px auto 0;
  padding: 22px 26px;
  background: rgba(180, 60, 40, .08);
  border: 1px solid rgba(180, 60, 40, .35);
  border-left: 3px solid rgba(220, 90, 70, .8);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}
.form-error-banner.on { display: block; }
.form-error-banner strong {
  color: rgba(240, 170, 150, 1);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 11px;
}
.form-error-banner .fallback-cta {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.form-error-banner .fallback-cta:hover {
  background: var(--gold);
  color: var(--bg);
  text-decoration: none;
}

/* =========================================
   FAQ (Accordion via <details>)
   ========================================= */
.faq {
  max-width: 780px;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  transition: border-color .25s ease;
}
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq details[open] { border-bottom-color: var(--gold-soft); }
.faq summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--text);
  padding: 8px 48px 8px 0;
  position: relative;
  list-style: none;
  font-weight: 400;
  transition: color .25s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold-bright); }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
  font-weight: 300;
  transition: transform .3s ease;
  line-height: 1;
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  padding: 14px 48px 8px 0;
  margin: 0;
  font-weight: 300;
  max-width: 700px;
}
