/* =============================================================
   ABLAUF PAGE — Prozess-Steps, Hero, Location, Timeline
   Seite: /ablauf
   Selektoren: .ab-*
   ============================================================= */

/* Hero */
.ab-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 72vh;
  background: var(--black);
}

.ab-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(48px, 7vw, 96px);
}

.ab-hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.ab-hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.ab-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 32px;
}

.ab-hero-headline em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

.ab-hero-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
}

.ab-hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.ab-hero-step-preview {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px 40px;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--duration-slow) ease;
}

.ab-hero-step-preview:last-child { border-bottom: none; }
.ab-hero-step-preview:hover { background: rgba(255, 255, 255, 0.02); }

.ab-hero-step-preview-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  width: 44px;
  text-align: right;
}

.ab-hero-step-preview-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  flex: 1;
}

/* Process Steps */
.ab-steps {
  background: var(--off-white);
}

.ab-step {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 480px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ab-step:nth-child(even) { direction: rtl; }
.ab-step:nth-child(even) > * { direction: ltr; }

.ab-step-visual {
  background: var(--black);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.ab-step-visual-num {
  font-family: var(--font-display);
  font-size: clamp(8rem, 16vw, 14rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: -20px;
  right: 30px;
  line-height: 1;
  user-select: none;
}

.ab-step-visual-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.ab-step-visual-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.ab-step-visual-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  position: absolute;
  bottom: 40px;
  right: 40px;
}

.ab-step:nth-child(even) .ab-step-visual-name {
  right: auto;
  left: 40px;
}

.ab-step-content {
  padding: clamp(40px, 5vw, 72px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.ab-step-tag {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.ab-step-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.2;
}

.ab-step-content h2 em {
  font-style: italic;
  color: var(--mid-gray);
}

.ab-step-content p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--mid-gray);
  font-weight: 300;
}

.ab-step-checklist {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ab-step-checklist li {
  font-size: 0.88rem;
  color: var(--black);
  font-weight: 400;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.ab-step-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* Client Prep Section */
.ab-prep {
  background: var(--black);
  padding: clamp(64px, 9vw, 120px) clamp(24px, 6vw, 96px);
}

.ab-prep-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ab-prep-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  margin-bottom: clamp(56px, 8vw, 96px);
  align-items: end;
}

.ab-prep-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.ab-prep-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.ab-prep-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
}

.ab-prep-title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

.ab-prep-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  align-self: end;
}

.ab-prep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.ab-prep-card {
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-right: -1px;
  margin-bottom: -1px;
}

.ab-prep-card-icon {
  font-size: 1.5rem;
  margin-bottom: 20px;
  opacity: 0.7;
}

.ab-prep-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  margin-bottom: 14px;
}

.ab-prep-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
}

/* Location Section */
.ab-location {
  background: var(--off-white);
  padding: clamp(64px, 9vw, 120px) clamp(24px, 6vw, 96px);
}

.ab-location-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.ab-location-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.ab-location-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.ab-location h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 24px;
}

.ab-location h2 em {
  font-style: italic;
  color: var(--mid-gray);
}

.ab-location p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--mid-gray);
  font-weight: 300;
  margin-bottom: 16px;
}

.ab-location-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.ab-location-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ab-location-item-label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  min-width: 100px;
  padding-top: 3px;
}

.ab-location-item-text {
  font-size: 0.92rem;
  color: var(--black);
  line-height: 1.6;
}

/* Timeline / Dauer */
.ab-timeline {
  background: var(--black);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ab-timeline-item {
  padding: clamp(36px, 5vw, 56px) clamp(24px, 3vw, 40px);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ab-timeline-item:last-child { border-right: none; }

.ab-timeline-phase {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.ab-timeline-duration {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.ab-timeline-duration em {
  color: rgba(255, 255, 255, 0.3);
  font-style: normal;
  font-size: 0.5em;
}

.ab-timeline-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

/* Responsive — Ablauf */
@media (max-width: 900px) {
  .ab-hero { grid-template-columns: 1fr; min-height: auto; }

  .ab-hero-right {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .ab-hero-step-preview { padding: 16px 32px; }
  .ab-step { grid-template-columns: 1fr; }
  .ab-step:nth-child(even) { direction: ltr; }
  .ab-step-visual { min-height: 200px; }
  .ab-step-visual-name { right: 40px; left: auto; }
  .ab-prep-header { grid-template-columns: 1fr; }
  .ab-prep-grid { grid-template-columns: 1fr; }
  .ab-location-inner { grid-template-columns: 1fr; }
  .ab-timeline { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .ab-timeline { grid-template-columns: 1fr; }

  .ab-timeline-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .ab-timeline-item:last-child { border-bottom: none; }
}
