/* --- BESPOKE PROFILE STYLES --- */
.bespoke-card {
  background: #f2f0e8; 
  border: 1px solid #dcd9d0;
  border-radius: 22px;
  padding: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2rem;
}

.profile-wrap {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap; /* Stacks on mobile */
}

.profile-photo {
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Circular portrait */
  border: 4px solid #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.profile-text {
  flex: 1;
  min-width: 300px;
}

/* --- PREMIUM CARD BACKGROUNDS --- */
.bg-chauffeur        { background: url("/images/prem-chauffeur.webp") center / cover no-repeat; }
.bg-luxury-hotels    { background: url("/images/prem-hotels.webp") center / cover no-repeat; }
.bg-devon-safari     { background: url("/images/prem-exmoor.webp") center / cover no-repeat; }
.bg-arthurian        { background: url("/images/prem-arthur.webp") center / cover no-repeat; }
.bg-wales-tour       { background: url("/images/prem-wales.webp") center / cover no-repeat; }
.bg-private-old-town { background: url("/images/prem-private-walk.webp") center / cover no-repeat; }

@media (max-width: 600px) {
  .profile-wrap { justify-content: center; text-align: center; }
  .profile-text { min-width: 100%; }
}