/* ── ABLAUF: DARK LUXURY THEME ────────────────── */
.ablauf-page {
  background: #1A1815;
  color: #F2ECE4;
}

/* Hero */
.ablauf-hero {
  padding: 12rem 5vw 6rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(192,154,92,0.15);
}
.ablauf-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(192,154,92,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.ablauf-hero-label {
  font-family: var(--ff-b);
  font-size: 0.95rem; font-weight: 200;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 2rem; display: block;
}
.ablauf-hero-h1 {
  font-family: var(--ff-d);
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  font-weight: 400; line-height: 1.1;
  color: #F2ECE4; max-width: 750px;
  margin-bottom: 2rem;
}
.ablauf-hero-h1 em { font-style: italic; color: var(--gold-bright); }
.ablauf-hero-body {
  font-size: 1.18rem; font-weight: 300;
  line-height: 1.85; color: #C8BDB1;
  max-width: 580px;
}

/* Intro text */
.ablauf-intro {
  padding: 5rem 5vw;
  border-bottom: 1px solid rgba(192,154,92,0.12);
}
.ablauf-intro-text {
  font-family: var(--ff-d);
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  font-weight: 300; font-style: italic;
  line-height: 1.55; color: #C8BDB1;
  max-width: 700px;
  border-left: 1px solid var(--gold);
  padding-left: 2.5rem;
}

/* Steps */
.ablauf-steps { padding: 0 5vw 4rem; }

.a-step {
  display: grid; grid-template-columns: 130px 1fr;
  gap: 4rem; padding: 5rem 0;
  border-bottom: 1px solid rgba(192,154,92,0.12);
  align-items: start;
}
.a-step:last-child { border-bottom: none; }

.a-step-num {
  font-family: var(--ff-d); font-size: 6rem; font-weight: 300;
  color: rgba(192,154,92,0.15); line-height: 1; text-align: right;
}
.a-step-h {
  font-family: var(--ff-d); font-size: clamp(1.6rem, 2.2vw, 2.5rem);
  font-weight: 400; color: #F2ECE4; margin-bottom: 0.4rem;
}
.a-step-sub {
  font-family: var(--ff-d); font-style: italic;
  font-size: 1.2rem; color: var(--gold-bright); margin-bottom: 1.5rem;
}
.a-step-body {
  font-size: 1.2rem; font-weight: 300;
  line-height: 1.9; color: #C8BDB1;
  max-width: 560px; margin-bottom: 1.8rem;
}
.a-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.a-tag {
  font-size: 0.95rem; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #C8BDB1; border: 1px solid rgba(192,154,92,0.25);
  padding: 0.4rem 0.85rem;
  transition: border-color .2s;
}
.a-tag:hover { border-color: var(--gold); }

/* Gold divider ornament */
.ablauf-ornament {
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 5vw;
  gap: 1.5rem;
}
.ablauf-ornament-line {
  width: 60px; height: 1px; background: var(--gold); opacity: 0.3;
}
.ablauf-ornament-diamond {
  width: 8px; height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  opacity: 0.5;
}

/* Praise section */
.ablauf-praise {
  background: #241E1A;
  padding: 6rem 5vw;
  border-top: 1px solid rgba(192,154,92,0.12);
  border-bottom: 1px solid rgba(192,154,92,0.12);
}
.praise-label {
  font-family: var(--ff-b);
  font-size: 0.95rem; font-weight: 200;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 2rem; display: block;
}
.praise-h {
  font-family: var(--ff-d);
  font-size: clamp(1.5rem, 2.2vw, 2.6rem);
  font-weight: 400; line-height: 1.35;
  color: #F2ECE4; max-width: 650px;
  margin-bottom: 1.5rem;
}
.praise-h em { font-style: italic; color: var(--gold-bright); }
.praise-body {
  font-size: 1.2rem; font-weight: 300;
  line-height: 1.85; color: #C8BDB1;
  max-width: 600px;
}

/* CTA */
.ablauf-cta {
  padding: 6rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  gap: 4rem; flex-wrap: wrap;
  border-bottom: 1px solid rgba(192,154,92,0.12);
}
.ablauf-cta-h {
  font-family: var(--ff-d);
  font-size: clamp(1.6rem, 2.5vw, 3rem);
  font-weight: 400; line-height: 1.2; color: #F2ECE4;
}
.ablauf-cta-h em { font-style: italic; color: var(--gold-bright); }
.ablauf-cta .btn-gold {
  font-size: 0.95rem;
  padding: 1rem 2.4rem;
}

/* Override footer on dark page */
.ablauf-page footer { border-top: 1px solid rgba(192,154,92,0.12); }

/* Responsive */
@media (max-width: 900px) {
  .a-step { grid-template-columns: 1fr; gap: 1.5rem; }
  .a-step-num { text-align: left; font-size: 4.5rem; }
  .ablauf-cta { flex-direction: column; text-align: center; gap: 2rem; }
}
@media (max-width: 640px) {
  .ablauf-hero { padding: 9rem 1.5rem 4rem; }
  .ablauf-intro { padding: 4rem 1.5rem; }
  .ablauf-steps { padding: 0 1.5rem 3rem; }
  .a-step { grid-template-columns: 1fr; gap: 1rem; }
  .a-step-num { text-align: left; font-size: 4rem; }
  .ablauf-praise { padding: 5rem 1.5rem; }
  .ablauf-cta { padding: 4rem 1.5rem; flex-direction: column; text-align: center; }
}
