/* ══════════════════════════════════════════════════════════════════
   TEAM — Leistungsumfang, Zahlenband, Personen, Bürozeiten
   ══════════════════════════════════════════════════════════════════ */

/* ---- 15 Maklertätigkeiten ---------------------------------------- */
.bptp__tasks {
  list-style: none;
  margin: clamp(36px, 5vw, 56px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.bptp__task {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--bp-line);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: border-color 0.3s var(--bp-ease), transform 0.3s var(--bp-ease), box-shadow 0.3s var(--bp-ease);
}

.bptp__task:hover {
  border-color: var(--bp-red-line);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -18px rgba(133, 14, 21, 0.35);
}

.bptp__task-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--bp-red);
  background: var(--bp-red-soft);
  border: 1px solid var(--bp-red-line);
}

/* ---- Zahlen-Band -------------------------------------------------- */
.bptp__band {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 84px) 0;
  background: linear-gradient(135deg, var(--bp-red), var(--bp-red-dark));
}

.bptp__band-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
  mix-blend-mode: luminosity;
}

.bptp__band-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin: 0;
  padding: 0;
  text-align: center;
}

.bptp__band-value {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
}

.bptp__band-label {
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

/* ---- Personen ------------------------------------------------------ */
.bptp__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.5vw, 26px);
  margin-top: clamp(36px, 5vw, 56px);
  align-items: start;
}

.bptp__person {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--bp-line);
  box-shadow: var(--bp-shell);
  transition: transform 0.4s var(--bp-ease), box-shadow 0.4s var(--bp-ease);
}

.bptp__person:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -28px rgba(133, 14, 21, 0.35);
}

.bptp__person--featured {
  grid-column: span 2;
  flex-direction: row;
  border-color: var(--bp-red-line);
}

.bptp__photo {
  position: relative;
  overflow: hidden;
  background: var(--bp-bg-soft);
}

.bptp__person--featured .bptp__photo {
  flex: 0 0 clamp(240px, 32%, 380px);
}

.bptp__photo img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.6s var(--bp-ease);
}

.bptp__person:hover .bptp__photo img { transform: scale(1.04); }

.bptp__person--featured .bptp__photo img { aspect-ratio: auto; min-height: 100%; }

.bptp__status {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--bp-text);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.3);
}

.bptp__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bp-green);
  box-shadow: 0 0 0 0 rgba(25, 165, 113, 0.6);
  animation: bptp-pulse 2.4s var(--bp-ease) infinite;
}

@keyframes bptp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(25, 165, 113, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(25, 165, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(25, 165, 113, 0); }
}

.bptp__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.6vw, 30px);
}

.bptp__name {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 23px);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.bptp__role {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bp-red);
}

.bptp__text {
  margin: 14px 0 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--bp-text-muted);
}

.bptp__contact {
  list-style: none;
  margin: auto 0 0;
  padding: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bptp__contact li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--bp-line-light);
}

.bptp__contact li:first-child { border-top: 0; padding-top: 0; }

.bptp__contact-label {
  flex-shrink: 0;
  min-width: 88px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--bp-text-light);
}

.bptp__contact a {
  font-size: 14px;
  font-weight: 600;
  color: var(--bp-text);
  text-decoration: none;
  word-break: break-word;
  transition: color 0.25s var(--bp-ease);
}

.bptp__contact a:hover { color: var(--bp-red); }

/* ---- Bürozeiten ----------------------------------------------------- */
.bptp__hours {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
}

.bptp__hours-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(24px, 3.5vw, 38px);
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--bp-line);
  box-shadow: var(--bp-shell);
}

.bptp__hours-card .bp-h3 { margin: 0; }

.bptp__hours-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.bptp__hours-table th,
.bptp__hours-table td {
  padding: 11px 0;
  border-bottom: 1px solid var(--bp-line-light);
  font-size: 14px;
  text-align: right;
}

.bptp__hours-table tr:last-child th,
.bptp__hours-table tr:last-child td { border-bottom: 0; }

.bptp__hours-table th {
  text-align: left;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.bptp__hours-table td { color: var(--bp-text-muted); }

.bptp__hours-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--bp-text-light);
}

/* ---- Sprechstunde ---------------------------------------------------- */
.bptp__consult {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(24px, 3.5vw, 38px);
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--bp-red), var(--bp-red-dark));
  box-shadow: 0 30px 70px -28px rgba(133, 14, 21, 0.5);
}

.bptp__consult::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.bptp__consult > * { position: relative; z-index: 1; }

.bptp__consult-title {
  margin: 0;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.bptp__consult-text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.bptp__consult-slots {
  width: 100%;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bptp__consult-slot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.bptp__consult-slot dt {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bptp__consult-slot dd {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.bptp__consult-addr {
  margin: auto 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

/* ---- CTA -------------------------------------------------------------- */
.bptp__cta-wrap { padding: 0 0 var(--bp-section-y); }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .bptp__tasks { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .bptp__hours { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .bptp__person--featured {
    flex-direction: column;
    grid-column: span 2;
  }

  .bptp__person--featured .bptp__photo { flex: 0 0 auto; }
  .bptp__person--featured .bptp__photo img { aspect-ratio: 16 / 10; min-height: 0; }
}

@media (max-width: 640px) {
  .bptp__tasks { grid-template-columns: 1fr; }

  .bptp__grid { grid-template-columns: 1fr; }
  .bptp__person--featured { grid-column: auto; }

  .bptp__band-stats { grid-template-columns: 1fr; gap: 28px; }

  .bptp__contact li { flex-direction: column; gap: 2px; }
  .bptp__contact-label { min-width: 0; }

  .bptp__hours-table th,
  .bptp__hours-table td { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .bptp__task,
  .bptp__person,
  .bptp__photo img { transition: none; }

  .bptp__task:hover,
  .bptp__person:hover { transform: none; }

  .bptp__person:hover .bptp__photo img { transform: none; }

  .bptp__status-dot { animation: none; }
}
